6

当tableView为拖拽源时,是否需要继承NSTableView或NSTableCellView来创建自定义拖拽图片?

如果没有,我缺少什么神奇的方法来做到这一点?我似乎找不到任何可靠的东西。

NSTableCellView子类可以(有点神秘地)覆盖:

@property(retain, readonly) NSArray *draggingImageComponents(将组合在一起的NSDraggingImageComponent实例 数组(谁知道它们以何种方式组合......))

NSTableView本身有

- (NSImage *)dragImageForRowsWithIndexes:(NSIndexSet *)dragRows tableColumns:(NSArray *)tableColumns event:(NSEvent *)dragEvent offset:(NSPointPointer)dragImageOffset

但这些似乎确实是子类化选项。

有人知道这里的另一种技术吗?(10.8+ 是目标)

4

2 回答 2

4

看起来好像NSTableViewCell

@property(retain, readonly) NSArray *draggingImageComponents

不会自动调用,但必须为基于视图的表视图显式引用。-draggingImageComponents可以重写以提供用于合成拖动图像的组件。

- (void)tableView:(NSTableView *)tableView draggingSession:(NSDraggingSession *)session willBeginAtPoint:(NSPoint)screenPoint forRowIndexes:(NSIndexSet *)rowIndexes
{
    // configure the drag image
    // we are only dragging one item - changes will be required to handle multiple drag items
    BPPopupButtonTableCellView *cellView = [self.columnsTableView viewAtColumn:0 row:rowIndexes.firstIndex makeIfNecessary:NO];
    if (cellView) {

        [session enumerateDraggingItemsWithOptions:NSDraggingItemEnumerationConcurrent
                                           forView:tableView
                                           classes:[NSArray arrayWithObject:[NSPasteboardItem class]]
                                     searchOptions:nil
                                        usingBlock:^(NSDraggingItem *draggingItem, NSInteger idx, BOOL *stop)
         {
             // we can set the drag image directly
             //[draggingItem setDraggingFrame:NSMakeRect(0, 0, myWidth, myHeight) contents:myFunkyDragImage];

             // the tableview will grab the entire table cell view bounds as its image by default.
             // we can override NSTableCellView -draggingImageComponents
             // which defaults to only including the image and text fields
             draggingItem.imageComponentsProvider = ^NSArray*(void) { return cellView.draggingImageComponents;};
         }];
    }
}
于 2015-05-13T11:30:12.207 回答
2

在您的数据源中,您需要设置图像,例如从您的tableView:draggingSession:willBeginAtPoint:forRowIndexes:方法中设置图像,如下所示

   [session enumerateDraggingItemsWithOptions:NSDraggingItemEnumerationConcurrent
                                      forView:tableView
                                      classes:[NSArray arrayWithObject:[NSPasteboardItem class]]
                                searchOptions:nil
                                   usingBlock:^(NSDraggingItem *draggingItem, NSInteger index, BOOL *stop)
    {
       [draggingItem setDraggingFrame:NSMakeRect(0, 0, myWidth, myHeight)
                             contents:myFunkyDragImage];
    }];
于 2014-03-02T12:48:54.113 回答