我找不到Lucida Grande粗体字体的名称系统名称,我需要在[UIFont fontWithName:size:]中使用它。谁能给我一个确切的名字?在互联网名单上找不到它。
TNX!
答案 0 :(得分:1)
您无法找到它,因为它在系统上不可用。你需要选择不同的字体。
答案 1 :(得分:0)
该字体与许多其他字体一样,无法在iOS中使用。要获取可用字体列表,请使用:
NSArray *familyNames = [[NSArray alloc] initWithArray:[UIFont familyNames]];
NSArray *fontNames;
NSInteger indFamily, indFont;
for (indFamily=0; indFamily<[familyNames count]; ++indFamily)
{
NSLog(@"Family name: %@", [familyNames objectAtIndex:indFamily]);
fontNames = [[NSArray alloc] initWithArray:
[UIFont fontNamesForFamilyName:
[familyNames objectAtIndex:indFamily]]];
for (indFont=0; indFont<[fontNames count]; ++indFont)
{
NSLog(@" Font name: %@", [fontNames objectAtIndex:indFont]);
}
[fontNames release];
}
[familyNames release];
http://ajnaware.wordpress.com/2008/10/24/list-of-fonts-available-on-the-iphone/
另请注意,字体列表可以随iOS更新而更改。