我在故事板中设置了我的UILabel.text
但是当我尝试更新ViewController.swift
中的值时:
@IBOutlet weak var scoreLabel: UILabel!
func scoreDisplay(score:Double) {
print(score)
scoreLabel.text = String(score)
}
它说unexpectedly found nil while unwrapping an Optional value
。如果scoreLabel.text
的值设置为82,情况会怎样?如果我print(scoreLabel.text)
我得到同样的错误。