Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. for (NSString *familyName in [UIFont familyNames])
  2. {
  3. NSLog(@"----------------");
  4. NSLog(@"FAMILY: %@", familyName);
  5. for(NSString *fontName in [UIFont fontNamesForFamilyName:familyName])
  6. {
  7. NSLog(@" %@", fontName);
  8. }
  9. }
  10.  
  11. FAMILY: Helvetica Neue LT Pro
  12. HelveticaNeueLTPro-MdCn
  13. HelveticaNeueLTPro-BdCn
  14.  
  15. MyCustomView *view = [[MyCustomView alloc] init];
  16. //bla bla
  17.  
  18. - (id) init
  19. {
  20. //create some labels and set their fonts.
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement