如何增加存储在Objective-C字符串中的数值

时间:2012-03-31 11:50:11

标签: iphone xcode

如何增加数字字符串值?

如果它最初是“1”,我想在每次applicationDidEnterBackground点击

中递增它

2 个答案:

答案 0 :(得分:8)

在你的情况下,你为此目的使用字符串很奇怪,但你可以在技术上这样做:

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

答案 1 :(得分:1)

最佳选择:将其设为数字​​而不是字符串。

其他选择: strValue = [NSString stringWithFormat:@“%d”,[strValue integerValue] + 1];