如何修改IOS的默认字体

 

 

The first is workaround wich is iterating over all the labels in your UIView and change the labels font, check this question and the answers: How to set a custom font for entire iOS app without specifying size.

The Second is creating a Category for your control:

@implementation UILabel (MyCustomLabel)

-(void)awakeFromNib{
    float fontSize = [self.font pointSize];
    self.font = [UIFont fontWithName:@"MyCustomFont" size:fontSize];
}

@end

如何修改IOS的默认字体,布布扣,bubuko.com

如何修改IOS的默认字体

上一篇:quick cocos 或者 Cocos2dx 项目下的Android.mk文件的学习


下一篇:Cocos2dx打包成apk包时在手机上闪退