iOS设置fontweight
systemFontOfSize: weight:
前⼀个就是调整字体⼤⼩,主要说说后⼀个,以下的这些都是填⼊权重值(即weight:后)
UIFontWeightUltraLight  - 超细字体fontweight取值
UIFontWeightThin  - 纤细字体
UIFontWeightLight  - 亮字体
UIFontWeightRegular  - 常规字体
UIFontWeightMedium  - 介于Regular和Semibold之间
UIFontWeightSemibold  - 半粗字体
UIFontWeightBold  - 加粗字体
UIFontWeightHeavy  - 介于Bold和Black之间
UIFontWeightBlack  - 最粗字体(理解)
这是设置系统默认字体的weight
当然其他的字体也可以设置,⽐如HelveticaNeue,HelveticaNeue是iOS⾃带的字体。其中就包含了多种weight,我们只需要在使⽤时,选择不同的字体就可以达到类似于html⼀样设置weight的效果了。
⽐如:
titleLabel.font = UIFont.init(name: "HelveticaNeue-Medium", size: 17)    这⾥我们就是⽤了HelveticaNeue的Medium字体,跟上⾯相同Medium是介于Regular和Semibold之间的字体。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。