// // MyViewController.m // MyHello // // Created by 수홍 주 on 10. 6. 23.. // Copyright 2010 All rights reserved. // #import "MyViewController.h" @implementation MyViewController @synthesize textField; @synthesize label; @synthesize string; - (BOOL)textFieldShouldReturn:(UITextField *)theTextField{ [theTextField resignFirstResponder]; return YES; } - (IBAction) changeGreeting:(id)sender{ self.stri..