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 trialMichael DeCroce-Movson
4,277 PointsWhat's going on here?
I don't get what I'm doing wrong, been stuck on this for too long, someone help.
// Example of UIBarButtonItem instance
// let someButton = UIBarButtonItem(title: "A Title", style: .plain, target: nil, action: nil)
enum BarButton {
case done(title: String)
case edit(title: String)
func button() -> UIBarButtonItem {
switch self {
case .done:
return UIBarButtonItem(title: "Something", style: UIBarButtonStyle.done, target: nil, action: nil)
case .edit:
return UIBarButtonItem(title: "Edit", style: UIBarButtonStyle.edit, target: nil, action: nil)
}
}
let done = BarButton.done(title: "Save")
let doneButton = done.button()
1 Answer
David Papandrew
8,386 PointsHi Michael,
A few small items are preventing this code from passing the challenge:
1) In the button method, the .edit case should return a .plain style (this is requested in the challenge instructions, step 2)
2) The button function is missing the closing curly bracket
3) When you invoke the BarButton method, the instructions want you to bind it to a constant named "button"
Make these fixes and it should work. Here is the corrected code:
enum BarButton {
case done(title: String)
case edit(title: String)
func button() -> UIBarButtonItem {
switch self {
case .done:
return UIBarButtonItem(title: "Something", style: .done, target: nil, action: nil)
case .edit:
return UIBarButtonItem(title: "Edit", style: .plain, target: nil, action: nil)
}
}
}
let done = BarButton.done(title: "Save")
let button = done.button()