list of Font File (.ttf format) for supported iphone font name?
Hi is anyone have idea . from where i can get the list of font file (.ttf ) for supported iphone font name. some f开发者_Go百科ont file i have found in macOs Lib.but i need all font file . so any idea?????
You can get this information from the UIFont class. This will give you the true supported list of fonts.
NSArray *fontFamilies = [UIFont familyNames];
for(NSString *fontFam in fontFamilies) {
NSArray *fontNames = [UIFont fontNamesForFamilyName:fontFam];
... do whatever needed with the names
}
精彩评论