0

我正在制作一个关于数学测试​​随机生成器的程序。但是当我创建一个随机操作时。我使用 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 = "/"
        }
    }

这会产生错误“无法分配一种类型的值“字符串”以在 swift 中键入“UILabel””你如何解决这个问题?

4

2 回答 2

1
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 = ""
    }
}
于 2015-07-01T05:46:22.127 回答
0

我认为operation是您的标签名称,因此您可以通过以下方式为其分配文本:

func generateQuestion() {
    var randomoperation:UInt32 = arc4random_uniform(3)
    if randomoperation == 0 {
        operation.text = "+"
    }
    if randomoperation == 1 {
        operation.text = "-"
    }
    if randomoperation == 2 {
        operation.text = "X"
    }
    if randomoperation == 3 {
        operation.text = "/"
    }
}

阅读此Apple 文档以获取更多信息。

于 2015-07-01T05:35:37.310 回答