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 trialbharath yelavatti
617 Pointscan 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
11,392 PointsDeclaring 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
}
}