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 trialVictoria Haidamus
6,887 PointsWhen I check my work for this code challenge it says that the enums are missing the associated values.
Here is my code, I can't find what's missing:
enum MobilePhone {
case iPhone(String)
case Android(String)
case WindowsPhone(String)
}
let iphone = MobilePhone.iPhone("7 Plus")
3 Answers
KRIS NIKOLAISEN
54,971 PointsDid you change the assignment as well? The following passed for me:
enum MobilePhone {
case iphone(String)
case android(String)
case windowsPhone(String)
}
let iphone = MobilePhone.iphone("7 Plus")
KRIS NIKOLAISEN
54,971 PointsCheck the letter case of your members: iphone, android and windowsPhone. You have an uppercase letter in each one that should be lowercase.
Victoria Haidamus
6,887 PointsTried it after your comment. Still not working.
kjvswift93
13,515 PointsYou just need to change word casing of the three associated values.
enum MobilePhone {
case iphone(String)
case android(String)
case windowsPhone(String)
}
let iphone = MobilePhone.iphone("7 Plus")