Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First I apologize if this is a fairly simple question, but I am a newbie to programming. Basically what I want to do is have two UITextField's where you enter a number into each, then press a button and in a third UITextField the sum of the first two UITextFields is displayed. Is this possible? Basically all I would need to know is how to define the IBAction method of the addition button. Here's what "I'm thinking" but it doesn't work because you can't do math with string values.

-(IBAction)addthefields {

 textfield3.text = textfield1.text + textfield2.text;

}

Again sorry if its a simple question but any help is much appreciated

share|improve this question

1 Answer

up vote 0 down vote accepted

This will probably work. It will add the values u've entered to the two textfields to your third textfield.

-(IBAction)addFields
{

   textfield3.text = [NSString stringWithFormat:@"%i",( [textfield1.text intValue] + [textfield2.text intValue] ) ];

{

One thing that u'll have to keep in mind is that you cant calculate with string values, you'll need integers, doubles and so on.

share|improve this answer
Its not quite liking it, though this makes sense to me. Its giving me an "Expected Identifier" error message – Taylor Jan 8 at 21:05
Edited code, it should work now, there was an excessive trailing ] – Da_smokes Jan 9 at 8:31

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.