我正在编写一个有关数学测试随机生成器的程序。
但是,当我创建一个随机操作时。我使用arc4random_uniform()创建一个随机数。这是功能。
func generateQuestion() {
var randomoperation:UInt32 = arc4random_uniform(3)
if randomoperation == 0 {
operation = "+"
}
if randomoperation == 1 {
operation = "-"
}
if randomoperation == 2 {
operation = "X"
}
if randomoperation == 3 {
operation = "/"
}
}
这将产生错误“无法快速将值类型“ String”分配给类型“ UILabel””
您如何解决这个问题?
最佳答案
func generateQuestion() {
switch arc4random_uniform(4) {
case 0:
operation.text = "+"
case 1:
operation.text = "-"
case 2:
operation.text = "X"
case 3:
operation.text = "/"
default:
operation.text = ""
}
}
关于ios - 不能快速分配“String”类型的值来输入“UILabel”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31153207/