Sum data from several textfields to a label
I'm trying to sum the integers from five UITextFields and post them to a UILabel.
This is the code I have tried. It works to begin with, then it start to mess up! Sometimes it doesent work at all!! Really weird!
int val = [textfield1.text intValue]
val = val+[textfield2.text intValue];
val = val+[textfield3.text intValue];
val = val+[textfield4.text intValue];
val = val+[textfield5.text intValue];
NSString *labelStr = [[NSString alloc] initWithFormat:@"%i", val];
label.text = labelStr;[/b]
Something wrong with the code?? Alternatives maybe? Greatful for all answers!
|