Hi.
I have timer in application which shows UIAlertView and vibrates iphone.
When iphone is locked iphone vibrates but alert is not shown at least after unlocking - alert is not visible.
what is wrong and how to remain it visible?
thanx
I have timer in application which shows UIAlertView and vibrates iphone.
When iphone is locked iphone vibrates but alert is not shown at least after unlocking - alert is not visible.
what is wrong and how to remain it visible?
Code:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Warning" message:@"Alert"] delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
[alert release];