I have implemented popovers as UIViewController presentations. I use a modal presentation style of Popover and UIPopoverPresentationController as the main view.
let popoverViewController = segue.destinationViewController as! SearchTableViewController
self.searchTableViewController = popoverViewController
popoverViewController.modalPresentationStyle = UIModalPresentationStyle.Popover
popoverViewController.popoverPresentationController!.delegate = self
My problem is that the popovers are displaying over the TextViews that they are anchored to.
Ex:
Here is how I have the TextView and the popover wired up on the story board:
Does anyone have an idea why the popover is pointing to the top left of this TextView? This was working fine with iOS 8 but the popovers shifted slightly in iOS9.