0

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

   //.....
 }
4

1 回答 1

0

请让我知道您在哪里使用此 alertview 代码?这意味着在哪个方法和哪个类中?

另外,请尝试查看此链接:“wait_fences:未能收到回复:10004003”?

如果您需要任何其他帮助,请告诉我。

于 2013-09-05T08:51:45.817 回答