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 trialerinkrentz
8,839 PointsCan't get past enums.
I have tried numerous solutions. Don't understand "initializer" comment in preview. Have worked over two hours.
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(title: String)
case Edit(title: 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(title: "Done")
let doneButton : UIBarButtonItem = Button(done)
1 Answer
Steven Deutsch
21,046 PointsHey Erin Krentz,
You're SO close!!! The only problem is with your call of the method. You need to call the method toUIBarButtonItem on done and assign it to the constant doneButton.
let doneButton = done.toUIBarButtonItem()
And that's it. The fix is as simple as that! This was a really hard challenge, I had a lot of trouble even getting to the point you got to myself!
Good Luck!