Wednesday, June 15, 2011

Font family in iOS

Here is the little code snippet which lets you get the array of font family available on iOS.

       NSString *family;
    for (family in [UIFont familyNames])
    {
    //  you can print family string or do whatever you want with it.
    }

No comments:

Post a Comment