I have a UILabel called label, and you can add or subtract 1 from it using two buttons. When you subtract all the way down to 0, I want the minus button to stop working. And if the value is added, I want the minus button to work again. Here is the method/code I'm using for the add/subtract button:
- (IBAction)addButton1:(id)sender {
[label setText:[NSString stringWithFormat:@"%d",[label.text intValue] +1]];
}
the code is the same for both the add/subtract methods. Except the +1 at the end is a -1.
I tried:
- (IBAction)addButton1:(id)sender {
int val = [label.text intValue];
[label setText:[NSString stringWithFormat:@"%d",[label.text intValue] +1]];
if(val - 1 <= 0) {
UIButton *button = (UIButton *)sender;
[button setEnabled:NO];
}
}
+button while it seems to me you want to disable the-button – Jean-Denis Muys Sep 11 '11 at 22:56-method and it works and it stops if the label is = to 0, but when i add to the value lets say we press the button 3 times so now the value is = to 3 and i hit the-button again and it does nothing so how can i get the method to start up, or start working again if the value isnt 0? Thanks a lot! – jessica simpson Sep 11 '11 at 22:58