-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Labels
Description
Is it possible to add popover support for iPad? Since following code shows empty popover with white area at the bottom.
if alert.respondsToSelector("popoverPresentationController") {
alert.modalPresentationStyle = .Popover
let ppc = alert.popoverPresentationController
ppc?.barButtonItem = self.navigationItem.rightBarButtonItem
}
self.presentViewController(alert, animated: true, completion: nil)