Mam nadzieję, że macie już rozwiązanie, czytając je wszystkie. Ale moje rozwiązanie znalazłem w następujący sposób. Oczekuję, że masz już komórkę UITextField
. Więc przygotowując, po prostu trzymaj indeks wiersza w znaczniku pola tekstowego.
cell.textField.tag = IndexPath.row;
Utwórz activeTextField
instancję o UITextField
zasięgu globalnym, jak poniżej:
@interface EditViewController (){
UITextField *activeTextField;
}
Więc teraz po prostu skopiuj wklej mój kod na końcu. I również nie zapomnij dodaćUITextFieldDelegate
#pragma mark - TextField Delegation
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
activeTextField = textField;
return YES;
}
- (void)textFieldDidEndEditing:(UITextField *)textField{
activeTextField = nil;
}
Rejestruje klawiaturę 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];
}
Uchwyty Klawiatura Notifications
:
Wywoływany, gdy wiadomość UIKeyboardDidShowNotification
jest wysyłana.
- (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];
}
Wywoływany, gdy wiadomość UIKeyboardWillHideNotification
jest wysyłana
- (void)keyboardWillBeHidden:(NSNotification*)aNotification
{
UIEdgeInsets contentInsets = UIEdgeInsetsZero;
[self.tableView setContentInset:contentInsets];
[self.tableView setScrollIndicatorInsets:contentInsets];
}
Teraz pozostaje jedna rzecz: Wywołaj registerForKeyboardNotifications
metodę do ViewDidLoad
metody w następujący sposób:
- (void)viewDidLoad {
[super viewDidLoad];
// Registering keyboard notification
[self registerForKeyboardNotifications];
// Your codes here...
}
Gotowe, masz nadzieję, że twoja textFields
wola nie będzie już ukryta przez klawiaturę.