2013-04-18 162 views
0

我正在開發基於mac桌面的應用程序,使用NSOutlineView創建了一些播放列表。我知道如何拖動和NSTableView下降,但我不知道如何拖動並根據所附的圖像(像iTunes應用程序)在播放列表下降,我拖着有些歌曲在播放列表2如何在播放列表中拖放mp3歌曲

dragging the songs into playlist2

+0

維尼特Singh--任何想法如何實現... ??? – Jaiswal 2013-04-18 05:27:28

+0

+1爲好問題 – 2013-04-18 09:54:31

回答

0

在從NSTableView選擇歌曲時,將選定的歌曲ID存儲在數組中。之後,當在NSOutlineView鼠標到達以下委託方法將調用到時候用戶可以添加到播放列表表...

-(NSDragOperation)outlineView:(NSOutlineView *)outlineView validateDrop:(id<NSDraggingInfo>)info proposedItem:(id)item proposedChildIndex:(NSInteger)index{ 
    return YES; 
} 

- (BOOL)outlineView:(NSOutlineView *)ov acceptDrop:(id <NSDraggingInfo>)info item:(id)item childIndex:(NSInteger)childIndex{ 
    return YES; 
} 
相關問題