I have a NSPanel. When the panel is empty, is moves well with holding and dragging it's background. However, If I put something on it, the area covered by new view won't be draggable anymore. As an example, I could put a NSImageView fills the panel fully. And the panel do not being dragged anymore. However I want to make this draggable even user holding on the image view. What should I do to do this?

link|improve this question

77% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You have to subclass your NSImageView and implement - (BOOL)mouseDownCanMoveWindow to return YES. Then you'll be able to drag the window wherever you click.

link|improve this answer
I didn't tested this solution yet, but it seems to work. Thanks! – Eonil Jun 20 '11 at 17:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.