Reputation: 3442
I'm using UIActionSheet in one of my applications and I have a question . When the action sheet comes to front , everything else goes in background and I cannot interact anymore with my buttons or other objects in my view until I dismiss the action sheet . Is there a way to disable this feature ? I mean , if I have the action sheet displayed , can I still be able to use what goes in background ? If there is a way , I would really appreciate if you could show me how to do it.
Upvotes: 1
Views: 1283
Reputation: 11502
The action sheet is supposed to be modal. All user input will be captured by the action sheet until it is dismissed. So all the background controls cannot be interacted with by the user until it is gone.
Upvotes: 1
Reputation: 15628
There is no way to access the Background controls, If the UIActionSheet
or UIAlertView
comes to the front.
Upvotes: 2