有什么方法可以在WatchKit中设置旧金山字体的等距?在介绍新系统字体时,演示者仅显示AppKit。

样例代码表示赞赏。

Xcode:7.0 Beta
WatchOS:2.0

最佳答案

swift 版:

let monospacedFont = UIFont.monospacedDigitSystemFontOfSize(16, weight: UIFontWeightRegular)
let monospacedString = NSAttributedString(string: "1234", attributes: [NSFontAttributeName: monospacedFont])
textLabel.setAttributedText(monospacedString)

08-26 17:28