0

我正在尝试我的第一个 iphone 应用程序。我现在被困住了。我有两个显示单独随机数的标签。我使用按钮和 IBAction 生成数字,然后将它们传递给标签。现在我需要确定两个数字何时匹配,然后在另一个标签上打印“匹配”。我正在尝试各种不同的东西,但不知何故我错过了一些东西。如果有人可以帮助解释如何从代码角度解释如何执行此操作并将其连接到界面构建器中,那就太棒了!谢谢

4

1 回答 1

1

在获取并显示随机数的方法中,您只需比较它们并相应地更改第三个标签中的文本。

- (IBAction)buttonPressed {
    // Generate the 2 random numbers and show them in the labels here.

    // Then compare them and show the result in the third label:
    if (randomNumber1 == randomNumber2) {
        thirdLabel.text = @"Match";
    } else {
        thirdLabel.text = @"No Match";
    }
}
于 2012-09-14T22:17:19.777 回答