Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have four separate UITextFields and I want to add the numerical value of them all and then display the content within a UILabel, below is current code:

- (void)updateString {

    self.string1 = textField1.text;
    self.string2 = textField2.text;
    self.string3 = textField3.text;
    self.string4 = textField4.text;
    self.string5 = textField5.text;        

    label.text = self.total; // total is an NSString and label is a UILabel

}

I am unable to add together the numerical values within each textField1/2/3... and store the value within total and then update the label. Any suggestions?

share|improve this question
Shouldn't you be converting to an int or NSNumber at some point?? – PaulG May 3 '12 at 21:11
Well that's where I get stuck, where/what would suggest doing? – user437038 May 3 '12 at 21:13

2 Answers

NSString has a method on it -intValue. That is what you want to use.

Check the section "Getting Numeric Values" in the NSString documentation

share|improve this answer
int totalValue = [textField1.text intValue] + [textField2.text intValue]...;

label.text = [NSString stringWithFormat:@"The total value is %d", totalValue];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.