目前我在我的單元格中有一個按鈕用作圖像,爲什麼按鈕而不是圖像,似乎使用按鈕保持圖像更清晰,但這不是這裏或那裏。試圖修復典型的發現零,而解包錯誤
if realDistance > 8000
{
self.tourist.text = "Tourist"
//crashing line
self.touristBackground.imageView?.image = UIImage(named: "tours-1")
}
這是我當前的代碼,註釋行是崩潰的行。我不知道爲什麼會崩潰,但不是上面的行。
確切的錯誤是致命錯誤:
unexpectedly found nil while unwrapping an Optional value
我想我可以嘗試的,如果讓,但似乎不起作用。然而,我可能做錯了。
編輯。它發生在這裏也
if lbuttonHidden == true
{
self.lls.text = String(self.lls.text!.toInt()! - 1)
//crashing line
if self.lls.text == "\(0)"
{
self.trophy.image = UIImage(named: "STAR2")
}
}
那麼哪一位是零? – Wain
來自@Anni S的答案應該可以做到。不過,我會很有興趣知道在你的班級中如何宣佈「touristBackground」。 – Eppilo