I was wondering if there was a way to stop an iPad popover from dismissing automatically whenever you touch the screen outside the popover? If not, is there some kind of met
- (BOOL) popoverControllerShouldDismissPopover:(UIPopoverController *)popoverController { return NO; }
That does it for you and you may assign a specific bar button item or something else in your popover to dismiss the popover.