1

I'am using the IKImageBrowserView with setting a drop deleagte

[self.imageBrowserView setDraggingDestinationDelegate:self];

No matter what i return in draggingEntered: the performDragOperation: gets never called

- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender {
    // GETS CALLED 
    return NSDragOperationEvery;
}

- (BOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender {
    // NOT CALLED
    return YES;
}

- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender {
    // NOT CALLED
    return YES;
}
Peter Lapisu
  • 19,915
  • 16
  • 123
  • 179

1 Answers1

1

Apparently draggingUpdated: must be implemented.

Willeke
  • 14,578
  • 4
  • 19
  • 47