UIAlertView popups lock up keyboard actions

Posted by TurbZ on Stack Overflow See other posts from Stack Overflow or by TurbZ
Published on 2012-11-21T04:46:22Z Indexed on 2012/11/21 5:00 UTC
Read the original article Hit count: 100

Filed under:
|
|

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!

© Stack Overflow or respective owner

Related posts about iphone

Related posts about objective-c