Reputation: 29524
I know that on a NSWindow you can use setIgnoresMouseEvents:. However, a NSView doesn't have either setEnabled: or setIgnoresMouseEvents:. Any fixes?
NSWindow
setIgnoresMouseEvents:
NSView
setEnabled:
Upvotes: 6
Views: 3952
Reputation: 96333
Implement the hitTest: method to return nil.
hitTest:
nil
Upvotes: 14