0

I'm new to Cocoa and Objective-C but and this may be a very basic question. My problem is that I have a NSWindow with a QTMovieView that should accept dragged files. The delegate class of the window implements the NSDraggingDestination protocol and I have the required methods to accept the file as defined on the NSDraggingDestination. It all works when I drag the file to the title bar but when I drag over the QTMovieView it no longer accepts the file. The strange thing is that this was working before. Can someone tell me what could I be doing wrong?

home
  • 12,468
  • 5
  • 46
  • 54
Bruno Ferreira
  • 942
  • 9
  • 22

1 Answers1

1

I had a similar problem a few months ago.

Forwarding drag & drop event to parent view

You have to unregister the QTMovieView so that it forwards the event to the parent view. That should be it.

Best,

Flo

Community
  • 1
  • 1
guitarflow
  • 2,930
  • 25
  • 38