7

我正在使用这两个功能[[UIApplication sharedApplication] beginIgnoringInteractionEvents];[[UIApplication sharedApplication] endIgnoringInteractionEvents];同时我正在从服务器下载数据。

我的日志中出现以下错误。

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

我试图搜索几个链接,但找不到合适的解决方案。

如何在不使用 beginIgnoringInteractionEvents 的情况下禁用触摸屏?

什么是“-[UIApplication beginIgnoringInteractionEvents] 溢出。无视。”?

忽略 AppKit 中的 UI 事件

beginIgnoringInteractionEvents 或 userInteractionEnabled = NO 未按预期工作

4

1 回答 1

12

你可以随时检查。

if ([[UIApplication sharedApplication] isIgnoringInteractionEvents])...
于 2013-02-25T07:22:19.757 回答