I have class Canvas
and another custom view CanvasItem
both subclasses of NSView
. The CanvasItem
has a IKImageView
subview.
Canvas
overrides magnifyWithEvent
to react to the gesture. Everything works fine except the case when the gesture is done on one of the CanvasItem
s then the IKImageView
handles the event and zooms the image instead of passing it up the view hierarchy. Is here a way to prevent IKImageView
from handling gestures?
I tried setting editable
to false
but with no effect.