I am working on custom keyboard extenssion for iOS. The keyboard's size should match that of default system keybaord on each device.
For purposes of accompanied app I need to know what is the size of default system keyboard (in portrait and landscape) without actually displaying the keyboard. Is there a way?
Sure, I can measure size of keyboard in simulator on all devices a and than just use it as constant. But then if a new device is released the app will not work on it properly - its keyboard size will not be amoung constants.
Having never created a Keyboard Extension myself I'm going off of what would make sense to me. I would recommend coming up with a layout for your keyboard that is consistent and have auto layout resize it to fill the space. If you're not using Interface Builder I'd recommend checking your view (or superview) in
viewDidLoad
and seeing if it has already been sized for you.