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

Cant 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?

buttons.swift
// 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

Start 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

Thanks for the help, that fixed the issue!