Skip to content

Instantly share code, notes, and snippets.

@netoxico
Last active January 1, 2016 19:38
Show Gist options
  • Save netoxico/8191313 to your computer and use it in GitHub Desktop.
Save netoxico/8191313 to your computer and use it in GitHub Desktop.
Objective C Notes

Log object class

NSLog(@"object: %@", [self.dynamicsDrawerViewController class]);

Log all font familyNames

for (NSString* family in [UIFont familyNames])
{
    NSLog(@"%@", family);
        
    for (NSString* name in [UIFont fontNamesForFamilyName: family])
    {
        NSLog(@"  %@", name);
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment