wait_fences: failed to receive reply: 10004003 - what?

后端 未结 4 779
情书的邮戳
情书的邮戳 2020-12-17 01:05

Been getting this odd error.

heres the deal - in the below method i have an alert view come up, take a U/N and PW, then atempt to start another method.

The

4条回答
  •  没有蜡笔的小新
    2020-12-17 01:46

    Here I was also facing the same issue in my project and I managed to solve the issue now. You need to call the method using NSTimer.

    So, Here you are calling one alert inside another alert means when one alert dismiss then the new alert you are calling there. There is no problem in that. You can do it easily. Instead of defining alertview inside the method "- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{ if (alertView == completeAlert )", You can create one method e.g. "Show_AlertMessage" and call it using timer like this.

        [NSTimer scheduledTimerWithTimeInterval:0.001 target:self selector:@selector(Show_AlertMessage) userInfo:nil repeats:NO];
    

    Let me know if you can get rid of this issue. We will solve this issue as I did for my side.

提交回复
热议问题