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 trialmitchellwan
3,620 PointsWhy does my code not work here?
Next, add a method to the enum named button that returns an instance of the class UIBarButtonItem configured properly. An example of how to create an instance for this task is shown in the comments below. Use the same initializer.
In the method, using the associated values as titles for the button, return a button with style UIBarButtonStyle.done for the done member of the BarButton enum. Similarly for the edit member, return a UIBarButtonItem instance with the style set to UIBarButtonStyle.plain.
In both cases you can pass nil for target and action. Once you have a method, call it on the value we created in the previous task and assign it to a constant named button.
// 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(let title, let style, let target, let action):
return UIBarButtonItem(title: title, style: .done, target: nil, action: nil)
case .edit(let title, let style, let target, let action):
return UIBarButtonItem(title: title, style: .plain, target: nil, action: nil)
}
}
}
let done = BarButton.done(title: "Save")
let button = done.button()
1 Answer
Victor Mercier
14,667 PointsHi, here is my code:
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 button = done.button()
The main thing you are doing wrong is that you cannot assign enum associated that don't exist in your enum in the enum method. If that helped you, please mark as best answer to indicate other students your issue is resolved!
mitchellwan
3,620 PointsI see now, thank you!
Victor Mercier
14,667 PointsVictor Mercier
14,667 PointsHi, here is a more detailed answer about why your code was not working.
At this line of code, you are assigning the .done member (in the enum method) some constants that do not match the associated values you declare earlier in the done member.
.done(let title, let style, let target, let action)
Hope this is clearer!