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 Intermediate Swift Properties Computed Properties

Chris Jackson
Chris Jackson
30,535 Points

Having a problem with Intermediate Swift coding challenge for computed properties.

My solution seems to work in Xcode, but doesn't compile in the browser and I am not getting any errors. Directions reflect enum syntax from Swift 2. Could this be an issue? Probably missing something obvious. Any help?

enum.swift
let UIFontTextStyleHeadline = "UIFontTextStyleHeadline"
let UIFontTextStyleBody = "UIFontTextStyleBody"
let UIFontTextStyleFootnote = "UIFontTextStyleFootnote"

enum Text {
  case headline 
  case bod 
  case footnote 

  var style: String {
    switch self {
     case .headline: 
        return UIFontTextStyleHeadline
     case .bod: 
        return UIFontTextStyleBody
     case .footnote: 
        return UIFontTextStyleFootnote
    }
  } 
}

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Chris,

It's just a small typo you introduced into the challenge. The code is all correct syntactically, but somehow you changed body to bod in both instances. Just fix that up and it's all good.

Keep Coding! :) :dizzy:

Chris Jackson
Chris Jackson
30,535 Points

Good gravy! Too much coffee for me. Thanks a lot!