Umarım zaten bunları okuyan bir çözümünüz vardır. Ama çözümümü şu şekilde buldum. Zaten bir hücreniz olmasını bekliyorum UITextField
. Hazırlanırken satır dizini metin alanının etiketine tutulur.
cell.textField.tag = IndexPath.row;
Aşağıdaki gibi global kapsamda bir activeTextField
örnek oluşturun UITextField
:
@interface EditViewController (){
UITextField *activeTextField;
}
Yani, şimdi sadece kodumu kopyala sonunda yapıştır. Ayrıca eklemeyi de unutmayınUITextFieldDelegate
#pragma mark - TextField Delegation
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
activeTextField = textField;
return YES;
}
- (void)textFieldDidEndEditing:(UITextField *)textField{
activeTextField = nil;
}
Kayıt klavyesi 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];
}
Kolları Klavye Notifications
:
UIKeyboardDidShowNotification
Gönderildiğinde çağrılır .
- (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
Gönderildiğinde çağrılır
- (void)keyboardWillBeHidden:(NSNotification*)aNotification
{
UIEdgeInsets contentInsets = UIEdgeInsetsZero;
[self.tableView setContentInset:contentInsets];
[self.tableView setScrollIndicatorInsets:contentInsets];
}
Şimdi bir şey bırakılır, Çağrı registerForKeyboardNotifications
giriş yöntemini ViewDidLoad
şöyle yöntemle:
- (void)viewDidLoad {
[super viewDidLoad];
// Registering keyboard notification
[self registerForKeyboardNotifications];
// Your codes here...
}
İşiniz bitti, umarım textFields
artık klavye tarafından gizlenmeyeceksiniz.