문제

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];

   //.....
 }
도움이 되었습니까?

해결책

please let me know where you are using this alertview code? it means in which method and in which class?

Also, try to look at this link : "wait_fences: failed to receive reply: 10004003"?

And let me know if you need any other help.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top