1
這是我的一些代碼。 當我嘗試回顯i
時,應用程序崩潰。 代碼有什麼問題?簡單:在Xcode中添加?
int i=0;
for (NSDictionary *rowthree in resultsthree) {
i++;
testLabel.text = i;
}
謝謝。
這是我的一些代碼。 當我嘗試回顯i
時,應用程序崩潰。 代碼有什麼問題?簡單:在Xcode中添加?
int i=0;
for (NSDictionary *rowthree in resultsthree) {
i++;
testLabel.text = i;
}
謝謝。
代碼示例非常小,但猜測:您不能直接設置testLabel.text = i
,因爲text
是NSString的一個實例,而不是整數。你可能是指:
testLabel.text = [NSString stringWithFormat:@"%d", i];
哇,愚蠢的我。謝謝! – iosfreak 2011-02-16 01:35:45