I'm playing with the new Split Screen feature of iOS 9 for the iPad Air 2. While my Apps works fine in general in all supported sizes, I do see a weird behaviour of UIPopoverControllers. If my App only gets half of the screen, all Popovers are opened no longer as a popover window, but instead are opened like they would be "presented modally". Which means they take over the whole screen area which is reserved for the App. This is a problem because a popover does not have a "close" or "done" button (you close it by tapping outside of the popover), but a modally presented controller can not be closed without a "done" or "close" button. So while my App is in "half-screen" mode, I can no longer close the popover controllers.
Can I force the iOS to present the popovers as popovers in this case? The half screen has a width of 507 pt, the popovers usually have a width of only 320 pt, so it is plenty of room to still present these as popovers. And if I can not force the iOS to present these as popovers, is there a way to find out if the iOS would present popovers modally, so I can at least add "done" or "close" buttons in this case? Or is this just a bug and will be fixed in the future?