- (IBAction)productLessClicked:(id)sender {
if ([self.productTF.text isEqualToString:@"0"]) {
}else{
NSInteger count = self.productTF.text.integerValue;
--count;
self.productTF.text=[NSString stringWithFormat: @"%ld", (long)count];
}
}
- (IBAction)productAddClicked:(id)sender {
NSInteger count = self.productTF.text.integerValue;
++count;
self.productTF.text=[NSString stringWithFormat: @"%ld", (long)count];
}
if ([self.productTF.text isEqualToString:@"0"]) {
}else{
NSInteger count = self.productTF.text.integerValue;
--count;
self.productTF.text=[NSString stringWithFormat: @"%ld", (long)count];
}
}
- (IBAction)productAddClicked:(id)sender {
NSInteger count = self.productTF.text.integerValue;
++count;
self.productTF.text=[NSString stringWithFormat: @"%ld", (long)count];
}
Sign up here with your email
ConversionConversion EmoticonEmoticon