-
Notifications
You must be signed in to change notification settings - Fork 923
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable UITableView keyboard avoiding on iOS 8.3 SDK and newer
Apps built using the iOS 8.3 SDK (probably: older SDKs not tested) seem to handle keyboard avoiding automatically. This doesn't seem to be documented anywhere by Apple. Note: this only applies to UITableView.
- Loading branch information
1 parent
b154752
commit eaa88e9
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
eaa88e9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, this made the keyboard avoiding tableview quit working at all our apps in 8.3. Not sure why 8.3 would have fixed keyboard avoiding for you, but it did not fix it for our apps. Figured you may care to know. If not then feel free to ignore my comment :)
eaa88e9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I second @gordontucker. This change has caused keyboard avoiding to break for me too.
eaa88e9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gah, you're right; alas, none of this is documented so we're flying blind. Looks like this behaviour only affects UITableViewController, so for straight UIViewControllers, TPKeyboardAvoiding's still needed. Try SHA d891e1e.