Espero que vocês já tenham uma solução lendo tudo isso. Mas encontrei minha solução da seguinte maneira. Estou esperando que você já tenha um celular UITextField
. Portanto, na preparação, mantenha o índice da linha na tag do campo de texto.
cell.textField.tag = IndexPath.row;
Crie uma activeTextField
instância UITextField
com escopo global, como abaixo:
@interface EditViewController (){
UITextField *activeTextField;
}
Então, agora você acabou de copiar e colar meu código no final. E também não se esqueça de adicionarUITextFieldDelegate
#pragma mark - TextField Delegation
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
activeTextField = textField;
return YES;
}
- (void)textFieldDidEndEditing:(UITextField *)textField{
activeTextField = nil;
}
Registra o teclado notifications
#pragma mark - Keyboard Activity
- (void)registerForKeyboardNotifications
{
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWasShown:)
name:UIKeyboardDidShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillBeHidden:)
name:UIKeyboardWillHideNotification object:nil];
}
Teclado de alças Notifications
:
Chamado quando o UIKeyboardDidShowNotification
é enviado.
- (void)keyboardWasShown:(NSNotification*)aNotification
{
NSDictionary* info = [aNotification userInfo];
CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, kbSize.height, 0.0);
[self.tableView setContentInset:contentInsets];
[self.tableView setScrollIndicatorInsets:contentInsets];
NSIndexPath *currentRowIndex = [NSIndexPath indexPathForRow:activeTextField.tag inSection:0];
[self.tableView scrollToRowAtIndexPath:currentRowIndex atScrollPosition:UITableViewScrollPositionTop animated:YES];
}
Chamado quando o UIKeyboardWillHideNotification
é enviado
- (void)keyboardWillBeHidden:(NSNotification*)aNotification
{
UIEdgeInsets contentInsets = UIEdgeInsetsZero;
[self.tableView setContentInset:contentInsets];
[self.tableView setScrollIndicatorInsets:contentInsets];
}
Agora, resta uma coisa: chame o registerForKeyboardNotifications
método para o ViewDidLoad
método da seguinte maneira:
- (void)viewDidLoad {
[super viewDidLoad];
// Registering keyboard notification
[self registerForKeyboardNotifications];
// Your codes here...
}
Você está pronto, espero que sua textFields
vontade não fique mais oculta pelo teclado.