wait_fences: failed to receive reply: 10004003 (Again)

后端 未结 5 683
孤独总比滥情好
孤独总比滥情好 2021-01-21 14:34

Another cry for help about this warning.

First of all I have looked at every and all questions on here elsewhere and none seem to fit my situation. It has nothing to do

5条回答
  •  轮回少年
    2021-01-21 15:01

    According to my knowledge. This warning appears when we are calling a UIAlertView and at the same time we are performing some operation on the UIView. To solve this problem we need not to perform operation on UIView at that time. For this we can do either of the two things : 1. We can call UIAlertView with some delay so that the operation on the UIView gets completed. 2. Or we can perform the operations on the UIView in method - (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex; So that the UIAlertView is not on our UIView at that time when some operations are performing on the UIVIew.

    Hope it will help you.

提交回复
热议问题