endIgnoringInteractionEvents

endIgnoringInteractionEvents

我的应用程序在控制台中收到endIgnoringInteractionEvents消息。但是,如果使用断点,有时在此消息后崩溃。以下是消息。

[UIApplication endIgnoringInteractionEvents] called without matching -beginIgnoringInteractionEvents. Ignoring.


我对其进行了研究,发现在动画前后都使用它来处理动画过程中的用户交互。但是我没有在我的项目中使用这些事件,所以它怎么会给我带来这个错误。使用Paypal SDK时会发生这种情况。就在我完成贝宝(PayPal)中的付款过程之后,这发生后贝宝(PayPal)库退出。如何处理请指导。
提前致谢。

最佳答案

您可以随时检查

if ([[UIApplication sharedApplication] isIgnoringInteractionEvents])
{
    [[UIApplication sharedApplication] endIgnoringInteractionEvents];
}

09-07 14:11