I’ve subclassed NSCollectionView and I’m trying to receive dragged files from the Finder. I’m receiving draggingEntered: and returning an appropriate value, but I’m never receiving prepareForDragOperation: (nor any of the methods after that in the process). Is there something obvious I’m missing here?
Code:
- (void)awakeFromNib
{
[self registerForDraggedTypes:[NSArray arrayWithObjects:NSFilenamesPboardType, nil]];
}
- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender
{
NSLog(@"entered"); //Happens
NSPasteboard *pboard;
NSDragOperation sourceDragMask;
sourceDragMask = [sender draggingSourceOperationMask];
pboard = [sender draggingPasteboard];
if ([[pboard types] containsObject:NSFilenamesPboardType])
{
NSLog(@"copy"); //Happens
return NSDragOperationCopy;
}
return NSDragOperationNone;
}
- (BOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender
{
NSLog(@"prepare"); //Never happens
return YES;
}
This is pretty late, but I found the problem:
NSCollectionView silently provides an incompatible implementation of:
…and Apple hasn’t documented this. If you simply implement that method to re-invoke the draggingEntered method, everything works fine, e.g.:
(I came to SO hoping to find an explanation of what “magic” this custom implementation provides, since that too is … undocumented (thanks, Apple!). I’m guessing it does something clever with managing an insertion-point within the CollectionView?).
UPDATE: it seems the special magic is inside the NSCollectionView’s delegate object. For some reason, Xcode4 was claiming there was no delegate for me, but assigning it built and ran OK. Check out all the custom / semi-documented drag/drop methods there.
(or just do as I describe above and override the custom behaviour, and implement something that works and you can understand)