我開始爲iPhone開發。我有一個初學者型的問題,我敢肯定:將字符串追加到UILabel文本?
我有這個,它的工作原理:
testLabel.text = [NSString stringWithFormat:@"%@ to %@", testLabel.text, newLabelText];
我希望我能使用「+ =」操作符,但我得到一個編譯錯誤(無效的操作數爲二進制+,已經 '結構的NSString *' 和 '結構的NSString *'):
testLabel.text += [NSString stringWithFormat:@"to %@", newLabelText];
爲什麼我不能這樣做呢?
另外,如何縮短我的第一段代碼?
嘗試使用發佈的解決方案[這裏](http://stackoverflow.com/questions/510269/how-do-i-concatenate-strings-in-objective-c)。 – luvieere 2009-10-05 02:16:23