Swift错误:“UIButton”类型的值没有成员“text”

时间:2016-01-26 20:16:01

标签: swift swift2 swift-playground

当我试图发出一个简单的命令时,这是一个很快的错误。

enter image description here

2 个答案:

答案 0 :(得分:1)

UIButton上没有文本属性。你必须使用:

let label = UIButton()
label.setTitle(title: String?, forState:UIControlState)

如果通过选项单击课程检查UIButton文档,则可以看到可以使用的可用功能。

答案 1 :(得分:0)

UIButton没有text属性。相反,在其上运行setTitle:forState:,如下所示:

button.setTitle("My Title", forState: UIControlState.Normal)