Try to hide the keyboard while scrolling.
In class h Declare a text field
UITextField *selectedTextField;
In class m
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField { selectedTextField = textField; return YES; }
I also had the same problem. The above solution fixed this.
All the best.
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView { [selectedTextField resignFirstResponder]; }
Warrior
source share