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 2 Properties Computed Properties

Yigit Yilmaz
Yigit Yilmaz
6,245 Points

Can you anyone solve that?

I can't do that. I spent a few times to solve problem but I don't build the solution of like "Text.Headline.style".

Best Regards.

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

enum Text {
  case Headline
  case Body
  case Footnote
}
Yigit Yilmaz
Yigit Yilmaz
6,245 Points

Hi again,

After type this question, I've tried again and found the solution just 8 minutes later. I love programming for this reason :]

''' <p>let UIFontTextStyleHeadline = "UIFontTextStyleHeadline" let UIFontTextStyleBody = "UIFontTextStyleBody" let UIFontTextStyleFootnote = "UIFontTextStyleFootnote"

enum Text { case Headline case Body case Footnote

var style: String{

    switch self{
    case .Headline: return UIFontTextStyleHeadline
    case .Body: return UIFontTextStyleBody
    case .Footnote: return UIFontTextStyleFootnote

    }
}

}</p> '''

1 Answer

Tassia Castro
seal-mask
.a{fill-rule:evenodd;}techdegree
Tassia Castro
iOS Development Techdegree Student 9,170 Points

Hey Yigit,

That's my solution.

let UIFontTextStyleHeadline = "UIFontTextStyleHeadline"
let UIFontTextStyleBody = "UIFontTextStyleBody"
let UIFontTextStyleFootnote = "UIFontTextStyleFootnote"

enum Text {
  case Headline
  case Body
  case Footnote
  var style: String {
    switch self {
      case .Headline: return UIFontTextStyleHeadline
       case .Body: return UIFontTextStyleBody
        case .Footnote: return UIFontTextStyleFootnote
    }
  }
}

I also took a time to figure it out. But as you see you have just to switch 'self' and return the correct String.

Hope this helps =)