为什么这段代码不能在 Xcode 4.5(使用 ipad 6.0 模拟器)中工作,而它用于在 Xcode 4.4 上工作。(使用 ipad 模拟器 5.1)
- (IBAction)capitalDButtonTwo:(id)sender {
if ([capitalDResultLabelTwo text] == @"+") {
[capitalDResultLabelTwo setText:@"0"];
} else {
[capitalDResultLabelTwo setText:@"+"];
}
}
这是一个按钮,它在第一次按下时将同一视图中标签中的文本设置为“+”,然后将文本设置为“0”,然后每次按下时设置为“+”。我想知道一个版本与另一个版本有什么不同,以至于这个简单的代码不起作用