声明并初始化 UIFont
你可以按如下方式声明 UIFont
:
var font: UIFont!
UIFont
有更多的 init()
方法:
UIFont.init(descriptor: UIFontDescriptor, size: CGFloat)
UIFont.init(name: String, size: CGFloat)
因此,你可以像这样初始化 UIFont
:
let font = UIFont(name: "Helvetica Neue", size: 15)
默认字体为 System
,大小为 17
。