当我尝试设置UILabel.text时,我得到错误"意外地发现nil,同时解开一个Optional值"

时间:2015-11-10 18:41:58

标签: ios swift model-view-controller uiviewcontroller

我在故事板中设置了我的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)我得到同样的错误。

0 个答案:

没有答案