我使用故事板设置了一个出口,如下所示:

@IBOutlet var completeButton: UIButton!



self.completeButton.titleLabel = UIFont (name: standardFont, size: 22.0)

给出的错误不能赋给此表达式的结果。
任务很简单,但似乎不能很快解决这个问题。

最佳答案

您遗漏了font属性,需要解开titleLabel。请尝试以下操作:

self.completeButton.titleLabel!.font = UIFont.systemFontOfSize(22.0)

07-26 09:38