I'm working on a some iOs project. In this project, i have a process:
- User register himself in registration page
- When he press "Register", another page is showed (via
NavigationControler, with progress idndicator and 'Please Wait' message.) - After get response from server, some message in
UIAlertViewis show - When user press "OK" on alert, it's moved to next (when everything is ok), or previous (when something go wrong) page.
In most case, this flow works. But in sometimes (not always), when user send application to background/lock the screen while process indicator is on, and then turn app back to active state, UIAlertView is not shown. But, then, if user again send app to background and bring it back, message is visible.
Because interaction with UIAlertView is needed to continue, it's a problem. I cannot request from user a knowledge, that if no message is visible in this moment, they should turn app back and front again. I don't know why it is happen, and how to avoid this behavior. Can you help me?
UIAlertView– hp iOS Coder Sep 27 '12 at 10:26