美文网首页
iOS设置MediumFont

iOS设置MediumFont

作者: HerryBox | 来源:发表于2017-05-01 17:51 被阅读540次

由于UI设计师给的UI稿中,需要使用MediumFont,所以专门Google了下。
Demo地址:https://github.com/y1024/iOSDemo/tree/master/MediumFont
iOS8.4效果图:

iPhone6_MediumFont_iOS8.4.png
iOS9.3效果图:
iPhone6_MediumFont_iOS9.3.png
iOS10.2.效果图:
iPhone6_MediumFont_iOS10.2.png

iOS8.4设置无效果。

// 设置 MediumFont
- (UIFont*)mediumFont:(CGFloat)size {
#warning UIFontWeightMedium NS_AVAILABLE_IOS(8_2)
    UIFont *font = [UIFont systemFontOfSize:size weight:UIFontWeightMedium];
    return font;
}

// 设置 BoldFont
- (UIFont*)boldFont:(CGFloat)size {
    UIFont *font = [UIFont boldSystemFontOfSize:size];
    return font;
}

相关文章

网友评论

      本文标题:iOS设置MediumFont

      本文链接:https://www.haomeiwen.com/subject/uptqtxtx.html