-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resizing TableView Height when Keyboard Appears Ruins Keyboard Transparency in iOS 7 #12
Comments
Thanks for fixing. Is there a reason you prefer |
I remember some cases while doing the initial dev (on iOS6 I think) where the keyboard height value was wrong in willShow. Or was it in landscape? Anyway, I recall something being wrong with that value when using willShow. |
We use willShow in our current app (iOS 6+7) and it works fine. The only issue we have is that a bottom toolbar is sometimes taken account for twice. But I guess that would be the same with didShow. |
In iOS 7 the keyboard is semi-transparent. BPForms resizes the tableview when the keyboard appears. This makes the Keyboard look transparent until it completely appeared, then the background color jump-animates to the view's background color.
Wouldn't it be possible to just set the tableview's
contentInset
andscrollIndicatorInsets
instead of resizing the scroll view?The text was updated successfully, but these errors were encountered: