Search code examples
iphonecore-animation

What is "-[UIApplication beginIgnoringInteractionEvents] overflow. Ignoring."?


After adding about 25 animation blocks within a for loop, there are a lot of -[UIApplication beginIgnoringInteractionEvents] overflow. Ignoring. messages showing in the Xcode debug window.

What does the message mean? Can I safely ignore them?

Thanks!


Solution

  • Take a look at this question. Probably what's happening is that under the hood, your animation blocks are blocking the UI with this call. However, the UI is already blocking due to a previous animation -- probably the system is letting you know that you can't nest any deeper.

    As long as the UI comes back to life when the animations are done, I'd say it's probably not an issue?