从UILabel中显示的整数中减去1

时间:2011-07-29 22:31:18

标签: objective-c ios cocoa-touch uilabel

我有一个UILabel,当按下按钮时,它会增加一个值 - 基本上它会计数。有人可以用减号按钮帮我吗?这样,如果用户意外按下添加按钮超出了他们的需要,他们就可以减去他们的错误。我试过这个,但标签的文本现在设置为-1。我希望它每次按下时减去一个:

- (IBAction)subtractButton:(id)sender {
    static int integerSaved;
    integerSaved = integer;
    integerSaved -= 1;
    [label2 setText:[NSString stringWithFormat:@"%i", integerSaved]];
}

3 个答案:

答案 0 :(得分:3)

试试这个:

- (IBAction)subtractButton:(id)sender {
[label2 setText:[NSString stringWithFormat:@"%d",[label2.text intValue] - 1]];
}

答案 1 :(得分:1)

-(void)subtract
{
   label2.text = [NSString stringWithFormat:@"%d", [label2.text intValue]-1];
}

此代码假定您没有使用Interface Builder,并且您手动将“减去”链接到UIButton。如果您使用的是Interface Builder,请尝试使用此代码。

-(IBAction)subtract:(id)sender
{
   label2.text = [NSString stringWithFormat:@"%d", [label2.text intValue]-1];
}

我没有测试过这个,但我认为它应该可行。祝你好运!

答案 2 :(得分:0)

使用UIView实例的值进行算术运算不是MVC方式。您应该真正将数据模型与视图分开。

在某个类的某个类中展示intNSIntegerNSNumber属性,该类专门用于保存应用的数据值。

当触摸事件进入给定按钮时,递增数据属性并根据属性中的内容触发更新视图的通知。或者在房产中添加observer。然后,观察者在属性值更改时更新视图。

遵循MVC模式将是一种更“苹果”-ish或“iOS” - 做事的方式,而不是获取UIView的值,将其转换为整数,然后将其转换回来到一个字符串。