我将普通和粗体字体的 2 个 *.ttf 字体文件导入 xcode,在 .plist 等中设置所有内容 - 现在我可以完美地查看 Storyboard中的字体。
不幸的是,当我将字体设置为 Storyboard模式时,属性文本 View 以及标签或按钮将忽略我的字体!
如果我以编程方式生成某些东西,它可以正常工作,例如像这样:
var testButton = UIButton()
testButton.setTitle("Abbrechen", forState: UIControlState.Normal)
testButton.backgroundColor = UIColor.blueColor()
testButton.titleLabel?.font = UIFont(name: "FaktConPro-Bold", size: 37)
testButton.tintColor = UIColor.redColor()
testButton.frame = CGRectMake(0 , 0, self.view.frame.width, 60)
view.addSubview(testButton)
任何提示? iOS 更喜欢任何格式吗?
€dit:将标签和文本字段设置为“plain”而不是“attributed”暂时解决了这个问题
最佳答案
这是 Xcode 上的一个错误。几个月前我已经创建了一个雷达。这里:http://openradar.appspot.com/radar?id=5117089870249984