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 Swift Enums and Structs Structs and their Methods Review and Final Exam

bharath yelavatti
bharath yelavatti
617 Points

can we have an enum inside a struct ?

I wanted to know if we can have a enum declaration inside an struct. If yes how to do it ? like

Struct Task {

var Description : String

enum Status { case Doing,Pending,Completed }

}

1 Answer

Zac Mackey
Zac Mackey
11,392 Points

Declaring the enum inside the struct is fine and the way you've laid it out is how I did it as well.

You won't be able to access the enum Status outside of the Task struct, but for this challenge that's not something to be concerned about.

struct Task {
    var description: String

    enum Status {
        case Doing, Pending, Completing

        init(){
            self = .Pending
        }

        func statusString() -> String{
            switch self {
            case .Doing:
                return "Doing"
            case .Pending:
                return "Pending"
            case .Completing:
                return "Completing"
            }
        }
    }

    var status = Status()

    init(description: String) {
        self.description = description
    }
}