Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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!

like image 541
ohho Avatar asked Sep 24 '10 07:09

ohho


1 Answers

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?

like image 200
makdad Avatar answered Dec 04 '22 05:12

makdad