UIAlertView popups lock up keyboard actions
- by TurbZ
I have a strange behavior where if a UIAlert fires (like the one below) all subsequent keyboard or press behaviors are disabled / non responsive. Scrolling the screen still works but no action is fired from any button or keyboard presses.
[[[[UIAlertView alloc] initWithTitle:@"Invalid Address"
message:@"The email address you entered isn't valid. Please check and try again."
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil] autorelease] show];
Anyone experienced this behavior before and can shed some light?
Or maybe guide me in the right direction to debug it further to get to the root cause?
Thank you heaps!