无法在ios 7中设置uilabel字体(不使用自定义字体)

时间:2015-02-02 07:24:26

标签: ios ios7 fonts

背景: 字体使用:AppleSDGothicNeo-Light

支持:ios7 +

问题: 我通过以下方式设置uilabel的字体:

self.lblName.font = [UIFont fontWithName:@"AppleSDGothicNeo-Light" size:12.f];

我的期望: character C at iosFonts.com

我在iOS7中得到了什么(iOS8没问题):

Character C in iOS7

当我想打印调试说明时,它得到: font-family:“AppleSDGothicNeo-Light”; font-weight:normal; font-style:normal; font-size:12.00pt

发生了什么事?

1 个答案:

答案 0 :(得分:2)

我希望它能帮到你..

UIFont *myFont = [UIFont fontWithName:@"AppleSDGothicNeo-Light size:12];
[yourLable setFont:myFont];