I’m showing a UIPopovercontroller, which naturally dismisses itself when the user touches anywhere outside of it.
Is there a way to make it NOT dismiss itself when touched at all? I’d rather manually dismiss it when the user does an action within.
Thanks
From the docs on UIPopoverController:
Just set that to whatever you want to remain interactive (self.view for everything), and the popover will ‘ignore’ a dismissal from these views. It’s quite handy, and available in 3.2+, making it über-easy to write legacy code.