私は皆さんがそれらすべてを読んでいる解決策をすでに持っていることを望みます。しかし、私は次のように私の解決策を見つけました。既にのセルがあることを期待していますUITextField
。したがって、準備では、行インデックスをテキストフィールドのタグに保持します。
cell.textField.tag = IndexPath.row;
以下のようactiveTextField
にUITextField
、グローバルスコープを持つのインスタンスを作成します。
@interface EditViewController (){
UITextField *activeTextField;
}
だから、今あなたは私のコードを最後にコピーして貼り付けるだけです。また、追加することを忘れないでくださいUITextFieldDelegate
#pragma mark - TextField Delegation
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
activeTextField = textField;
return YES;
}
- (void)textFieldDidEndEditing:(UITextField *)textField{
activeTextField = nil;
}
キーボードを登録する 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];
}
キーボードを処理しNotifications
ます。
UIKeyboardDidShowNotification
が送信されたときに呼び出されます。
- (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];
}
ときに呼び出されます UIKeyboardWillHideNotification
が送信されたれます
- (void)keyboardWillBeHidden:(NSNotification*)aNotification
{
UIEdgeInsets contentInsets = UIEdgeInsetsZero;
[self.tableView setContentInset:contentInsets];
[self.tableView setScrollIndicatorInsets:contentInsets];
}
もう1つ残っています。 registerForKeyboardNotifications
ViewDidLoad
次のようにメソッドをinメソッドにます。
- (void)viewDidLoad {
[super viewDidLoad];
// Registering keyboard notification
[self registerForKeyboardNotifications];
// Your codes here...
}
完了しtextFields
ました。キーボードに隠れないようにしてください。