代码:
Jeff LaMarche的博客介绍
http://iphonedevelopment.blogspot.com/2010/08/fonts-and-font-families.html
for (NSString *family in [UIFont familyNames]) {
NSLog(@"%@", family);
for (NSString *font in [UIFont fontNamesForFamilyName:family]){
NSLog(@"\t%@", font);
}
}
Jeff LaMarche的博客介绍
http://iphonedevelopment.blogspot.com/2010/08/fonts-and-font-families.html