码迷,mamicode.com
首页 > 其他好文 > 详细

preferredFontForTextStyle字体设置之更改

时间:2015-02-16 16:58:53      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:swift   auto-layout   

在 iOS 7 之后我们可以用 UIFont 的preferredFontForTextStyle: 类方法来指定一个样式,并让字体大小符合用户设定的字体大小。目前可供选择的有六种样式:

  1. UIFontTextStyleHeadline 
  2. UIFontTextStyleBody 
  3. UIFontTextStyleSubheadline 
  4. UIFontTextStyleFootnote 
  5. UIFontTextStyleCaption1 
  6. UIFontTextStyleCaption2 

当在设置里更改时,如果自己的代码中有用到UIFont.preferredFontForTextStyle 的,给所在的View或VC添加UIContentSizeCategoryDidChangeNotification通知,方法里重新设置一下font即可。即:

NSNotificationCenter.defaultCenter().addObserver(self, selector: "preferredContentSizeChanged:", name: UIContentSizeCategoryDidChangeNotification, object: nil)
  func preferredContentSizeChanged(noti : NSNotification){
        userNameLbl.font = UIFont.preferredFontForTextStyle(UIFontTextStyleSubheadline)
    }

preferredFontForTextStyle字体设置之更改

标签:swift   auto-layout   

原文地址:http://blog.csdn.net/yanyanforest/article/details/43852591

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!