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 trial

iOS Enumerations and Optionals in Swift Introduction to Enumerations Enum Methods

My code is giving this error -> Make sure you assign the results of the expression to a constant named doneButton

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.

buttons.swift
// Example of UIBarButtonItem instance
// let someButton = UIBarButtonItem(title: "A Title", style: .plain, target: nil, action: nil)

enum button {
    case done(title: String)
    case edit(title: String)

      func toUIBarButtonItem() -> UIBarButtonItem {
      switch self {
      case .done("done"): return UIBarButtonItem(title: "done", style: .done, target: nil, action: nil)

      case .edit("edit"): return UIBarButtonItem(title: "edit", style: .plain, target: nil, action: nil)
    }
  }
}

let doneButton = button.done("done")
let doneButton = done.toUIBarButtonItem()

2 Answers

Paolo Scamardella
Paolo Scamardella
24,828 Points

Any luck with this? I'm having the same issue. In the description for the task, it does not say anything about assigning a constant to doneButton.