所以我开始学习如何编码。我正在创建一个应用程序,让你猜出手机随机生成的0-5之间的数字。当我运行应用程序时,我得到一个错误说"线程1:断点1.4" Check Image还有一些可能有用的其他信息:
我之前收到错误声明"无法分配类型'(UInt32)'类型为' String?'"
@IBOutlet weak var outputLbl: UILabel!
@IBOutlet weak var guessTxt: UITextField!
@IBAction func guessButton(_ sender: Any) {
let random = String(arc4random_uniform(6))
if guessTxt.text == random {
outputLbl.text = "You guessed the right number"
} else {
outputLbl.text = "You guessed the wrong number"
}
}