'''Originally Posted By: carlos'''
@interface ViewController : UIViewController<br><br>//text field that holds new word<br>@property (retain, nonatomic) IBOutlet UITextField *wordTextField;<br><br>//text field that holds new word's definition<br>@property (retain, nonatomic) IBOutlet UITextField *definitionTextField;<br><br>//gets rid of kyboard when touching background<br>//it's hooked in the Interface Builder to the background<br>//or any object that is to call this function <br>-(IBAction)backgroundClick:(id)sender;<br><br>@end<br><br><br>@implementation ViewController<br><br>@synthesize wordTextField;<br>@synthesize definitionTextField;<br><br>-(IBAction)backgroundClick:(id)sender<br>{<br> [wordTextField resignFirstResponder];<br> [definitionTextField resignFirstResponder];<br>}<br><br>@end
'''Originally Posted By: carlos'''
Group members:<br>Arshi<br>Carlos<br>Chinmayee