Reputation: 9219
Is it possible to prevent iphone view from receive touch events? If yes, How?
Upvotes: 1
Views: 407
Reputation: 331
You can also try calling
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
to tell your application to ignore touch-related events and
[[UIApplication sharedApplication] endIgnoringInteractionEvents];
to stop ignoring touch-related events.
Upvotes: 1