Quote:
Originally Posted by 53greek53
I am creating a simple calorie counter app and I'm trying to have it add 6 text boxes and put the total in another text box at the bottom after the calculate button is pressed. Is there some sample code that I could look at to help me do this or can someone point me in the right direction?
Thanks all.
|
float totalSum = 0;
totalSum = totalSum + [mytxtField1 floatValue];
totalSum = totalSum + [mytxtField2 floatValue];
totalSum = totalSum + [mytxtField3 floatValue];
totalSum = totalSum + [mytxtField4 floatValue];
totalSum = totalSum + [mytxtField5 floatValue];
mytxtFieldTotal.text = [NSString stringWithFormat:@"%f",totalSum];
assuming that you are able to attach an outlet to a IB component.