Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialphilip williams
5,991 Pointscan anyone help me with the last code challenge on swift 2.0 Enumerations?
having lots of problems with this challenge, here is my code:
func toUIBarButtonItem() -> UIBarButtonItem { switch self { case .Done(let titleValue): return UIBarButtonItem(title: titleValue, style: UIBarButtonStyle.Done, target: nil, action: nil) case .Edit(let titleValue): return UIBarButtonItem(title: titleValue, style: UIBarButtonStyle.Plain, target: nil, action: nil) } } }
let done = Button.Done("Done")
any help will be greatly appreciated
import Foundation
enum UIBarButtonStyle {
case Done
case Plain
case Bordered
}
class UIBarButtonItem {
var title: String?
let style: UIBarButtonStyle
var target: AnyObject?
var action: Selector
init(title: String?, style: UIBarButtonStyle, target: AnyObject?, action: Selector) {
self.title = title
self.style = style
self.target = target
self.action = action
}
}
enum Button {
case Done(String)
case Edit(String)
}
func toUIBarButtonItem() -> UIBarButtonItem {
switch self {
case .Done(let titleValue): return UIBarButtonItem(title: titleValue, style: UIBarButtonStyle.Done, target: nil, action: nil)
case .Edit(let titleValue): return UIBarButtonItem(title: titleValue, style: UIBarButtonStyle.Plain, target: nil, action: nil)
}
}
}
let done = Button.Done("Done")
2 Answers
Greg Kaleka
39,021 PointsHi Phillip:
Two minor issues:
- You're supposed to be creating an enum method, so your func definition needs to be inside the Button definition.
- You need to call the method like this:
let doneButton = done.toUIBarButtonItem()
Everything else looks good!
philip williams
5,991 PointsThank you greg, such a massive help. Got my Enumerations badge!