Hi is anyone have idea . from where i can get the list of font file (.ttf ) for supported iphone font name. some font file i have found in macOs Lib.but i need all font file . so any idea?????
A:
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
}
Claus Broch
2010-09-06 11:19:37
thans for reply . i am looking for actual font file like Helvetica.ttf. where can i get these file
pawan.mangal
2010-09-06 11:59:33
Why would you need the file itself? You can't access those anyway on the iPhone.
Claus Broch
2010-09-06 17:51:30