I may be missing something silly. But I've been staring at it for a day now and re-working it and what not. I still get the same "Expected expression before '{' token" error.
Before I got this error I was having trouble getting my button to do what I was asking it to do, which was simply add the two numbers and display the answer, basically. Here's the bit of code giving me the problem:
-(IBAction)click:(id)sender {
int sum = [myInt1.text intValue] + [myInt2.text intValue];
label.text = {NSString stringWithFormat:@"%@ the answer is %d",
name.text, sum];
}