博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】wait_fences: failed to receive reply: 10004003问题的引起原因
阅读量:4655 次
发布时间:2019-06-09

本文共 653 字,大约阅读时间需要 2 分钟。

==============非主线程

[self performSelectorOnMainThread:@selector(onResp*****eInMainThread) withObject:nil waitUntilDone:YES];
============= 主线程
-(void)onResp*****eInMainThread{
    [waitingBackView removeFromSuperview];
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"title" message:@"message !" delegate:nil cancelButtonTitle:@"Done" otherButtonTitles:nil];
    [alert show];
    [alert release];

 

只有UIAlertView才会引起这个错误吗?我的程序中没有用到UIAlertView的接口,而且在界面更新的时候也没有涉及到多线程,但还是出现了这个错误提示.....

我现在一个app,全屏幕的起始界面,然后在controller里设置 [[UIApplication sharedApplication] setStatusBarHidden:NO]; 显示状态栏,就会有这个情况

转载于:https://www.cnblogs.com/ygm900/archive/2013/01/24/2875896.html

你可能感兴趣的文章