Friends and who came across - I try to implement the TableView offset up when the keyboard appears. After the offset, the scroll disappears and the TableView cannot be scrolled. What is the problem?
-(void) keybordWillShow: (NSNotification *) notification { NSDictionary *keyboardPosition = notification.userInfo; NSValue *keyboardFrameTMP = [keyboardPosition objectForKey:UIKeyboardFrameEndUserInfoKey]; CGRect keyboardFrame = [keyboardFrameTMP CGRectValue]; NSInteger tableViewOffset =keyboardFrame.size.height; [UIView animateWithDuration:0.25f animations:^{ _myTableView.contentInset = UIEdgeInsetsMake(-tableViewOffset, 0, 0, 0); }];} scrollEnabled = YES does not help
_myTableView.contentInset- Vitali Eller