Guest User

Untitled

a guest
Oct 16th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. let UIFontTextStyleHeadline = "UIFontTextStyleHeadline"
  2. let UIFontTextStyleBody = "UIFontTextStyleBody"
  3. let UIFontTextStyleFootnote = "UIFontTextStyleFootnote"
  4.  
  5. enum Text {
  6. case headline
  7. case body
  8. case footnote
  9.  
  10. var style: String {
  11. switch self {
  12. case .headline: return UIFontTextStyleHeadline
  13. case .body: return UIFontTextStyleBody
  14. case .footnote: return UIFontTextStyleFootnote
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment