@interface MasterViewController : UIViewController{
IBOutlet UITextField *myTextField1;
IBOutlet UITextField *myTextField2;
NSMutableArray *nameArray;
NSMutableArray *placeArray;
}
- (IBAction)savedata:(id)sender;
@end
//----------------------------------------------------
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
// signup.enabled=YES;
[myTextField1 resignFirstResponder];
[myTextField2 resignFirstResponder];
return YES;
}
- (void)viewDidLoad {
[super viewDidLoad];
[myTextField1 becomeFirstResponder];
// Do any additional setup after loading the view, typically from a nib.
}
- (IBAction)savedata:(id)sender{
NSLog(@"Hai");
}
No comments:
Post a Comment