[UIApplication endIgnoringInteractionEvents]
Tells the receiver to resume the handling of touch-related events.
- (void)endIgnoringInteractionEvents
Discussion of [UIApplication endIgnoringInteractionEvents]
You typically call this method when, after calling the
beginIgnoringInteractionEvents
method, the animation or transition concludes. Nested calls of this method should match nested calls of thebeginIgnoringInteractionEvents
method.
Example of [UIApplication endIgnoringInteractionEvents]
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
[[UIApplication sharedApplication] endIgnoringInteractionEvents];