开发者

list of Font File (.ttf format) for supported iphone font name?

开发者 https://www.devze.com 2023-01-15 03:54 出处:网络
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

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

精彩评论

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