2012-03-31 85 views

回答

8

在你的情況很奇怪,你使用的字符串爲目的,但技術上可以做到這一點是這樣的:

int myInt = [myString intValue];// I assume you need it as an integer. 
myString= [NSString stringWithFormat:@"%d",++myInt]; 
+1

如果很難理解,那就讓我說清楚:簡單地說出來,並且可能被接受爲asnwer。我希望現在很清楚。 – 2012-03-31 12:03:09

+0

併成名。 :P那麼你應該已經得到了我在評論中已經回答的那個問題的不同答案。 – 2012-03-31 12:06:30

+0

啊,對於違反版權抱歉。但我想你在評論我的回答後。乾杯 – 2012-03-31 12:10:35

1

最好的選擇:使它成爲一個數,而不是字符串。

其他選項: strValue = [NSString stringWithFormat:@「%d」,[strValue integerValue] + 1];

相關問題