您的位置:首页 > 移动开发 > IOS开发

如何修改IOS的默认字体

2014-06-30 12:36 344 查看
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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: