I have a alertView that opens perfectly, but in the moment of dismiss crashes and gives this error and the app crashes
wait_fences: failed to receive reply: 10004003
- (BOOL)webView:(UIWebView *)w shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
//......
UIAlertView *message = [[UIAlertView alloc] initWithTitle:@"Event"
message:@""
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[message show];
[message release];
//.....
}