Reputation: 91911
I'm trying to debug keyboard height issues in the iOS simulator, I need several keyboards that are different heights. There are about 40 keyboards that are built-in and can be added via Settings.
Which of the built-in keyboards have different heights than the default English keyboard?
Note: I'm not looking for a 3rd party keyboard since I want to minimize the amount of variables I need to deal with. Also, I want to be able to do this kind of testing at anytime without the need to install another app.
Upvotes: 0
Views: 914
Reputation: 91911
Note: all values are ordered by size then name.
Note: shortcut bar refers to the iOS 9 Shortcut Bar and/or iOS 8's QuickType bar which is enabled/disabled by choosing the Predictive and Shortcuts options.
Upvotes: 0
Reputation: 1461
You can probably solve the issue you want by grabbing the keyboard height at runtime instead. This will work if apple changes keyboard heights in the future.
You can do that by registering for UIKeyboardWillChangeFrameNotification and then get the height from there. Reference: How to get UIKeyboard size with Apple iPhone SDK. Be sure to look at the second answer that references Chinese.
Upvotes: 1