嗨,我得到了这段代码,当我按下按钮时,会发生很多事情,图像被设置等。但我也希望它比较 2 个标签,当它们相等时,我希望它改变视图。它不起作用,有人可以看看为什么吗?
-(IBAction)play {
if (labelsText.text == textview.text){
GoedwoordViewController *Goedwoord = [[GoedwoordViewController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:Goedwoord animated:YES];
}
labelsText 是我的输入标签,textview 是一个标签,其中会出现一个随机单词。
GoedwoodViewController 是目标视图。GameViewController 是当前视图。
希望有人知道