meetpd
meetpd

Reputation: 9219

Is it possible to prevent iphone view from receive touch events? If yes, How?

Is it possible to prevent iphone view from receive touch events? If yes, How?

Upvotes: 1

Views: 407

Answers (2)

xxcv
xxcv

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

Vladimir
Vladimir

Reputation: 170829

Try:

yourView.userInteractionEnabled = NO;

Upvotes: 2

Related Questions