Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个需要添加到标签的 TextField 整数。
例如,当我输入 20 时,它会出现在标签中,当我保存并返回时它仍然存在,到目前为止一切都很好,我把这部分记下来了。
现在假设我回来并想在已经存在的 20 中添加另一个数量。我将如何去做呢?
我使用NSUserDefaults来加载/保存数据,但是当我去更新标签时,我在尝试使用我的变量时卡住了,比如currentValue:valueToAdd和valueTotalAfterAddition.
NSUserDefaults
currentValue
valueToAdd
valueTotalAfterAddition
您必须获取intValue文本,然后添加任何数字。例子
intValue
int currentValue = textField.text.intValue; int valueToAdd = 10; //change this to whatever you need int valueTotalAfterAddition = currentValue + valueToAdd; label.text = [NSString stringWithFormat:@"%d", valueTotalAfterAddition];