我的应用程序中有一些UILabel
对象,按下按钮时我会更改它们的值。它在模拟器和旧 iPhone 上运行良好,但如果我在 iPhone 4 上尝试,标签的先前文本不会消失,它会显示在新文本后面(嗯,有时它会消失,只有正确的文本出现,但大多数时候它不能正常工作)。
这是代码(它是一个只这样做的方法,lehenPantalla
是 a UIViewController
,用于设置文本的变量是作为参数传递的整数):
self.lehenPantalla.firstPlayerSet.text = [NSString stringWithFormat:@"%d",localFirstPlayerSet];
self.lehenPantalla.secondPlayerSet.text = [NSString stringWithFormat:@"%d",localSecondPlayerSet];
self.lehenPantalla.firstPlayerGames.text = [NSString stringWithFormat:@"%d",localFirstPlayerGames];
self.lehenPantalla.secondPlayerGames.text = [NSString stringWithFormat:@"%d",localSecondPlayerGames];
这是一个常见的错误吗?我不知道发生这种情况是因为手机是 iPhone 4 还是因为它使用的是 iOS 5.1(另一部手机运行的是 iOS 4)。