Just got the 'Beginning iPhone Development' from Apress. I believed I was starting to wrap my head around the basics, but for some reason I can't get the following code to work:
Code:
-(IBAction) textFieldDoneEditing:(id)sender
{
[nameField resignFirstResponder];
}
-(IBAction) backgroundClick:(id)sender
{
[nameField resignFirstResponder];
NSLog(@"Here I am");
}
Anyone?