我需要在NSCollectionView中拖放。在NSCollectionView中拖放示例
所以,我看着蘋果的代碼示例: https://developer.apple.com/library/mac/#samplecode/IconCollection/Introduction/Intro.html
沒有爲拖動的方法。但它不起作用。
添加以下方法無結果:
-(BOOL) collectionView:(NSCollectionView *)collectionView canDragItemsAtIndexes:(NSIndexSet *)indexes withEvent:(NSEvent *)event {
return YES;
}
的代表被設置。
有沒有人知道解決方案?