I have a requirement where in I have to display a custom border for UIPopoverController\'s popover view instead of the default \"Black theme\" border. Is it possible?
Solved this by using UIView and also by overriding the hitTest in the main rootViewController's view to see if the touch point is outside that view. If so, the event will be consumed to dismiss the new popover, otherwise the event will be forwarded to the new popover.