draggingEntered: called but performDragOperation: not on IKImageBrowserView

435 Views Asked by At

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;
}
1

There are 1 best solutions below

0
Willeke On BEST ANSWER

Apparently draggingUpdated: must be implemented.