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

Victoria Haidamus
Victoria Haidamus
6,887 Points

When 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:

enums.swift
enum MobilePhone {
  case iPhone(String)
  case Android(String)
  case WindowsPhone(String)
}

let iphone = MobilePhone.iPhone("7 Plus")

3 Answers

Did 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")

Check the letter case of your members: iphone, android and windowsPhone. You have an uppercase letter in each one that should be lowercase.

Victoria Haidamus
Victoria Haidamus
6,887 Points

Tried it after your comment. Still not working.

You 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")