美文网首页
iOS设置字体方法systemFontOfSize: weigh

iOS设置字体方法systemFontOfSize: weigh

作者: Sweet丶 | 来源:发表于2018-05-17 14:32 被阅读199次

    iOS 8.2系统增加了一个创建字体的方法systemFontOfSize: weight:。
    这个方法是iOS8.2之后出来的,但是iOS8.0的机器也能运行这个方法,只不过是苹果在8.2时将这个方法变为了共有API

    前一个就是调整字体大小,主要说说后一个,以下的这些都是填入权重值(即weight:后)

    UIFontWeightUltraLight  - 超细字体

    UIFontWeightThin  - 纤细字体

    UIFontWeightLight  - 亮字体

    UIFontWeightRegular  - 常规字体

    UIFontWeightMedium  - 介于Regular和Semibold之间

    UIFontWeightSemibold  - 半粗字体

    UIFontWeightBold  - 加粗字体

    UIFontWeightHeavy  - 介于Bold和Black之间

    UIFontWeightBlack  - 最粗字体(理解)

    转载自:https://blog.csdn.net/victor_barnett/article/details/50834763

    相关文章

      网友评论

          本文标题:iOS设置字体方法systemFontOfSize: weigh

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