I'm looking for two numbers here: the height in portrait and the height in landscape. Don't answer in cm or inches, but rather in pixels.
Thanks!
|
|
The portrait height is 264 while the landscape height is 352. I know this is a late answer, but I just came across this question myself. |
|||||||||||||||
|
|
|||||||
|
|
On the iPad, the keyboard size can also depend on the language (e.g. the japanese keyboard is taller). Another reason to query it programmatically. |
|||
|
|
|
You can get the keyboard height from the userInfo dictionary returned by the will/did show/hide keyboard notification, as provided by the UIWindow class (reference guide link). This is a much better way of getting the height than hard-coding because you get the following benefits:
In fact, the answers to this question that give an exact number most likely got this number by looking at the results returned within this dictionary! |
|||||
|
|
The answer is: it depends. I am aware of 16 different heights the keyboard can be, and it can be in any position. It is different for:
I have attached an image showing some different possible configurations.
Rather than enumerating all 16 possibilities, I think you want to observe |
||||
|
|
|
You can find this out programmatically (through the simulator if you dont have a device). |
|||
|
|
|
Heights are: PORTRAIT = 264 LANDSCAPE = 352 |
|||||||
|
|
I don't know what it is, but you could figure it out easily enough. Surf on your iPad to a page with this... JavaScript
HTML
Click the button (after you have brought up the on screen keyboard), and it should tell you the height. Repeat for the other orientation. |
|||
|