Reputation: 17169
When presenting a UIPopoverController
from a UIButton
the entire screen behind the popover is dimmed.
Is it possible in some way or another to prevent the presenting button (the one pressed to show the popover) from being dimmed?
Upvotes: 1
Views: 192
Reputation: 130191
I remember solving this problem when it has appeared the first time on iOS 7. The only solution (if nothing has changed) has 3 parts:
popoverBackgroundViewClass
).UIPopoverController
to handle the appearance callbacks)In the end it's not too difficult but it takes time to debug.
Upvotes: 2