Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITextView keyboardDismissMode Bug

I've just found an annoying bug with the new keyboardDismissMode property of the scroll view. When using this with a text view with the value UIScrollViewKeyboardDismissModeInteractive and the keyboard is dismissed the scroll view seems to jump up to the top before it continues to decelerate.

I've filed a bug report with Apple but need a workaround. I've tried the DAKeyboardControl without the new iOS7 support which behind the scenes is using the keyboardDismissMode and it still does it which to me indicates this is a much deeper problem.

Any suggestions?

like image 800
Dino Avatar asked Sep 21 '13 08:09

Dino


1 Answers

for this issue better you code with scrollviewDelegete and simply mention when you want dismiss keyboard through ResignFirstResponder

like image 172
Shri Ram Avatar answered Oct 27 '22 20:10

Shri Ram