So I'm trying to figure out the least hacky way of showing a popover in portrait on iPhone 6+, while keeping the modal presentation style on 5s and 6.
Using size classes is not an option apparently, since there's no way to differentiate between 6+ and others in portrait.
I can either show popovers all the time or modals all the time, except for the landscape 6+.
What I want is to show popovers on 6+ and modals otherwise. Apart from doing something like detecting 6+, what's the most adaptive way that I can do that?
Thanks!