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 trialYigit Yilmaz
6,245 PointsCan 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.
let UIFontTextStyleHeadline = "UIFontTextStyleHeadline"
let UIFontTextStyleBody = "UIFontTextStyleBody"
let UIFontTextStyleFootnote = "UIFontTextStyleFootnote"
enum Text {
case Headline
case Body
case Footnote
}
1 Answer
Tassia Castro
iOS Development Techdegree Student 9,170 PointsHey 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 =)
Yigit Yilmaz
6,245 PointsYigit Yilmaz
6,245 PointsHi 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
}</p> '''