Tagged Questions
1
vote
1answer
2k views
Ignoring UI Events in AppKit
If I wanted to ignore a touch event in UIKit on the iPhone I would simply do:
// Begin ignoring events
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
//Do my code
// Stop ...