首页 > 移动平台 > 详细

如何修改IOS的默认字体

时间:2014-07-02 00:00:15      阅读:475      评论:0      收藏:0      [点我收藏+]

 

 

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的默认字体

原文:http://www.cnblogs.com/lingzhao/p/3816398.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!