标签: ios swift label
我想在模拟器首次启动时使用swift代码清除标签的内容,而不是使用Xcode的界面构建器。我怎么做?有人可以帮帮我吗?谢谢!
答案 0 :(得分:5)
您可以使用:
textLabel.text = nil
因为textLabel .text 是一个可选字符串。
答案 1 :(得分:3)
使用此,
yourLabel.text = ""
或
yourLabel.text = nil