I'm currently building a custom keyboard for iOS 8 though extensions. When the user presses a certain button on the keyboard view, I want to present a full screen modal view controller. When I try to present the view controller, it tries to present within the bounds of the keyboard view. I'm using [self presentViewController:animated:completion:]
with an instantiated view controller. Is there anyway to present a full screen view controller? akin to photo editing extensions(which display a full screen view controller)
Thank you
You have to present your viewController from the controller that called the keyboard, not from the keyboard itself.
Try: