I know the SDK documentation says
Taps outside of the popover’s contents automatically dismiss the popover.
But I\'m sure the s
You need to set the passthroughViews
property. From the documentation:
An array of views that the user can interact with while the popover is visible.
@property (nonatomic, copy) NSArray *passthroughViews
When a popover is active, interactions with other views are normally disabled until the popover is dismissed. Assigning an array of views to this property allows taps outside of the popover to be handled by the corresponding views.
Set passthroughViews
to an array of view(s) that you want to handle the touch event instead of just dismissing the popover.