- (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0]; UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath]; myTextField = (UITextField *)[cell viewWithTag:kMyTextFieldTag]; [myTextField becomeFirstResponder]; }
source share