2

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

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

我研究了一下,发现它是用来在动画前后处理动画过程中的用户交互的。但是我没有在我的项目中使用这些事件,所以它为什么会给出这个我没有得到的错误。使用 paypal sdk 时会发生所有这些事情。就在我在贝宝中完成支付过程之后,贝宝库退出之后发生这种情况。如何处理请指导。提前致谢。

4

1 回答 1

4

你可以随时检查

if ([[UIApplication sharedApplication] isIgnoringInteractionEvents])
{
    [[UIApplication sharedApplication] endIgnoringInteractionEvents];
}
于 2013-07-26T09:16:09.090 回答