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 Enums Associated Values

Pass or fail....monster rancher

 310> enum Scounts { 
 311.     case Passed(String) 
 312.     case Failed(String) 
 313.     //case Members(Int)                                                                                                                                   
 314. } 
 315. 
 315> let TestStatus = Scounts.Passed("You passed!!") 
 316. 
TestStatus: Scounts = Passed {
  Passed = "You passed!!"
}
 316>  
 317> switch TestStatus{ 
 318. case .Passed(let passed): 
 319.     print(passed) 
 320. case .Failed(let failed): 
 321.     print(failed) 
 322. } 
You passed!!

I think it is funny that when I comment out case Members(Int)

error shows. because the Int type is different than string so when switching over those values it doesn't work.