-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dismiss the ALert when push segue #5
Comments
Do you know any way to put another UIView behind the alert to prevent user action? |
This should not be the case: there already is a view right behind the alert (the dark gray shadow). Can you provide steps / sample code to reproduce this issue? Thanks. |
Let see your current sample project, you have 3 buttons, right? Tap on "Short Message" button, then popup the alert. Don't close it. Continue tap on "Short Message" again. New Alert will come, but the previous not auto close. My issue case similar that, the user may not tap on OK button to close the message, but they can tap on another button on the screen, then screen flow will happen, but current alert still there. May I suggest that we should have an transparency full screen view below the alert (you can do similar as UIAlertView of Apple), that view will lock the screen until user tap on button to close the alert. |
Which version of iOS are you on? Because the way it is right now, there is a full screen view underneath the alert, meaning interaction with controls below it is not possible. I tried reproducing your steps but couldn't get that bug to happen. |
Thanks for your response. |
This is weird. Is the - showOverlayAnimated: method not being called for you? That is where I'm adding a full-screen translucent UIView. So the layout is always: Alert Overlay Superview Are you on the latest version? I've tried reproducing your error on the different OSes, without success. |
Hi,
When popup the alert but not close it, then tap on another button on the screen to push segue to a new screen. The current alert still there.
I want it automate be closed when user go to new screen. Do you know how?
Thanks in advance.
The text was updated successfully, but these errors were encountered: