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 trialShawn Tsou
Courses Plus Student 2,281 PointsSTILL DOESN'T WORK
Read through multiple answers, it still gives this same error
I'm getting an error of "make sure you assign the results of the expression to a constant named doneButton", but in the description, it doesn't states that we need to assign the results to a doneButton variable. I have tried both done and doneButton, but nothing seems to work. I'm assuming team tree house needs to update the task.
https://teamtreehouse.com/community/enum-challenge-task-2-of-2-error-message-is-wrong
enum BarButton {
case done(title: String)
case edit(title: String)
func button() -> 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 = BarButton.done(title: "Save")
let done = done.button()
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, Shawn Tsou ! You are so incredibly close here. In fact, you're only off by one word. This bummer! message is a bit odd, I know. But that could be because your code doesn't compile anymore. You are re-declaring an already declared variable named done
. And while the Bummer! message says doneButton
, the instructions say that the constant should be named button
and that is accurate. Take a look at the last line, which is the only part you're missing:
let button = done.button()
Hope this helps!
Shawn Tsou
Courses Plus Student 2,281 PointsShawn Tsou
Courses Plus Student 2,281 PointsThank you so much, Jennifer. I figured the bug after a short walk in the end. I guess I was just too tired / frustrated to realize that. XD