Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Scott Baumbich
Courses Plus Student 22,129 PointsCant get passed this challenge, code works in Xcode but not on website
Anyone have a quick copy and past so I can move on to the next lesson. The instructions are conflicting with naming. compiler error says to name the constant "button" and instructions say "doneButton" not sure if thats the issue?
// Example of UIBarButtonItem instance
// let someButton = UIBarButtonItem(title: "A Title", style: .plain, target: nil, action: nil)
enum Button {
case done(String)
case edit(String)
func toUIBarButtonItem() -> UIBarButtonItem {
switch self {
case .done(let title):
return UIBarButtonItem(title: title, style: .done, target: nil, action: nil)
case .edit(let title):
return UIBarButtonItem(title: title, style: .plain, target: nil, action: nil)
}
}
}
let done = Button.done("Done")
let doneButton = done.toUIBarButtonItem()
1 Answer

Jiri Janecek
6,443 PointsStart from the beginning and don't change anything what was there from the start. You've completely changed what you were given and that may be the problem
Scott Baumbich
Courses Plus Student 22,129 PointsScott Baumbich
Courses Plus Student 22,129 PointsThanks for the help, that fixed the issue!