Thanks, I found something similiar in the UIAlertView Class Reference:
Quote:
|
Important In iOS 4.0 and later, alert views are not dismissed automatically when an application moves to the background. This behavior differs from earlier versions of the operating system, where alert views were automatically cancelled (and their cancellation handler executed) as part of the termination sequence for the application. Now, it is up to you to decide whether to dismiss the alert view (and execute its cancellation handler) or leave it visible for when your application moves back to the foreground. Remember that your application can still be terminated while in the background, so some type of action may be necessary in either case.
|
Actually, I want my alert view to be visible after the app is back in the foreground. I freaking out right now. No matter how and were I show an alert view, I always get this wait_fences error.
I found some threads which recommend to call the selector showing the alert view with a delay. This didn't work either.
Can someone post a simple class with an alert view, that does not cause this errror, please?