DAKeyboardControl icon indicating copy to clipboard operation
DAKeyboardControl copied to clipboard

How to hide keyboard when scrolling tableview?

Open nullproduction opened this issue 10 years ago • 1 comments

I tried in scrollViewWillBeginDragging method and keyboard hiding, but keyboard after it doesn't work (keys are not pressed).

  • (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView { [self.view hideKeyboard]; }

nullproduction avatar Oct 03 '14 12:10 nullproduction

Try [self.view endEditing:YES];

devxoul avatar May 12 '15 07:05 devxoul