In iOS 8, you can configure any view controller that will be displayed as a popcorn, for example:
UIViewController* controller = ...;
To make it appear as a popover on the iPhone, add it to the UIPopoverPresentationControllerDelegate delegate from popover (which you installed above):
- (UIModalPresentationStyle)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller { return UIModalPresentationNone; }
source share