我需要在 NSCollectionView 中拖放。
所以我查看了 Apples 代码示例: https ://developer.apple.com/library/mac/#samplecode/IconCollection/Introduction/Intro.html
有一种拖动的方法。但它不起作用。
我添加了以下没有结果的方法:
-(BOOL) collectionView:(NSCollectionView *)collectionView canDragItemsAtIndexes:(NSIndexSet *)indexes withEvent:(NSEvent *)event {
return YES;
}
委托已设置。
有人知道解决方案吗?