after a bit of searching, I couldn't find an answer to something that seems like it would be useful to many.

Is there a way to make a UIPopoverController not dismiss when the user clicks somewhere on the outside? I want the user to have to use a cancel button (Yes, i realize this probably violates Apple's HIG somehow, but it's a rare case and makes sense from a User experience perspective).

Thanks for any help.

link|improve this question

2  
"I realize this probably violates Apple's HIG…" did you read it? – WTP'-- Jun 13 '11 at 15:54
I've read it quite a few times, but it also makes perfect sense for the design (opening a file from another app to save), and also seen quite a few apps do it. :/ – Jesse Naugher Jun 13 '11 at 15:56
+1 because you are one of the few people who actually read the HIG ;) – WTP'-- Jun 13 '11 at 15:56
In the class I took through my university back in the day, we had a test on it :(. – Jesse Naugher Jun 13 '11 at 15:58
That is awesome: forcing people to read it leads to better apps. – WTP'-- Jun 13 '11 at 16:04
show 2 more comments
feedback

2 Answers

up vote 5 down vote accepted

You can do hit-tests on where the tap occurred and in your popover's delegate return NO. - (BOOL)popoverControllerShouldDismissPopover:(UIPopoverController *)popoverController

link|improve this answer
+1: this, this is perfect. must have skimmed over it in the documentation. Thanks. It also doesn't get called when you call dismissPopoverAnimated: so don't even have to hit test really. Thanks – Jesse Naugher Jun 13 '11 at 15:58
Glad to hear you've also read the HIG (and that my reading of the docs paid off). – JoePasq Jun 13 '11 at 17:40
feedback

Just set the modalInPopover property on the UIViewController being displayed in the UIPopoverController.

popover = [[UIPopoverController alloc] initWithContentViewController:content];
content.modalInPopover = YES;
[popover presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

Be aware that, as of iOS5, you have to set modalInPopover inside of -viewDidAppear.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.