如何增加数字字符串值?
如果它最初是“1”,我想在每次applicationDidEnterBackground
点击
答案 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];