开发者

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
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜