NscollectionView Drag and Dropling: большинство событий делегатов не вызываются

StackOverflow https://stackoverflow.com/questions/5825833

Вопрос

У меня есть nscollectionView, связанный с nsarraycontroller. Я хочу работать перетаскивание, поэтому я создаю делегат и реализую методы

-(BOOL)collectionView:(NSCollectionView *)collectionView canDragItemsAtIndexes:(NSIndexSet *)indexes withEvent:(NSEvent*)event
-(BOOL)collectionView:(NSCollectionView *)collectionView acceptDrop:(id < NSDraggingInfo >)draggingInfo index:(NSInteger)index dropOperation:(NSCollectionViewDropOperation)dropOperation
-(NSDragOperation)collectionView:(NSCollectionView *)collectionView validateDrop:(id < NSDraggingInfo >)draggingInfo proposedIndex:(NSInteger *)proposedDropIndex dropOperation:(NSCollectionViewDropOperation *)proposedDropOperation
-(NSArray *)collectionView:(NSCollectionView *)collectionView namesOfPromisedFilesDroppedAtDestination:(NSURL *)dropURL forDraggedItemsAtIndexes:(NSIndexSet *)indexes

Я возвращаю «да» для двух методов Bool, nsdragoperationmove для valyatedRop: метод и пустой массив для именованных именфовфолдепппппппппдераций: метод. У меня также есть оператор NSLOG в качестве первой строки в каждом методе, чтобы я мог видеть, когда их вызывают.

Прямо сейчас единственный метод, который называется Candragitemsatindexes: (где я возвращаю да). Я вижу, что его вызывают, но любое дальнейшее перетаскивание просто изменяет выбор. Остальные никогда не вызываются.

Если я сделаю NSCollectionView, а не выборы поддержки, то даже этот метод не вызван.

Я уверен, что упускаю что -то очень очевидное, но я не могу понять, что это такое. Кто -нибудь получил перетаскивание, работая с NSCollectionViews и может пролить свет?

Это было полезно?

Решение

Я думаю, что вы скучаете по той части, где вы пишете контент перетаскивания в панель.
Чтобы поддержать перетаскивание, вы должны выполнить следующие шаги:

  1. Определите, можете ли вы перетащить источник перетаскивания
  2. Если YES, Напишите контент в панель
  3. Проверьте и принимайте элементы в вашей цели Drop

Написание в пасете должно быть реализовано в
- collectionView:writeItemsAtIndexes:toPasteboard:

Вам также нужно зарегистрировать свои перетаскиваемые типы - registerForDraggedTypes:

Некоторый пример кода:http://developer.apple.com/library/mac/#samplecode/iconcollection/introduction/intro.html

Другие советы

У этого кода есть все, что мне нужно, чтобы перетащить изображение из одного NSCollectionView в другой. Выяснить, что это не было очень очевидным. Selectable проверяется для представления Source Collection и подключен к созданию данных DataSource и Delegate, но мне не нужно было RegisterFordRaggedTypes.

class Window:NSWindow, NSComboBoxDelegate, NSTextFieldDelegate, NSDatePickerCellDelegate, NSTableViewDataSource, NSTableViewDelegate, MKMapViewDelegate, NSCollectionViewDataSource, NSCollectionViewDelegate, NSCollectionViewDelegateFlowLayout, NSTabViewDelegate, NSMenuDelegate, NSDraggingDestination { }

    func collectionView(collectionView: NSCollectionView, writeItemsAtIndexPaths indexPaths: Set<NSIndexPath>, toPasteboard pasteboard: NSPasteboard) -> Bool {
    let index = indexPaths.first!.item
    let url = webImageURLs[index]   // array of string URLs that parallels the collection view.
    NSPasteboard.generalPasteboard().clearContents()
    NSPasteboard.generalPasteboard().declareTypes([kUTTypeText as String, kUTTypeData as String], owner: nil)
    NSPasteboard.generalPasteboard().setString(url, forType: (kUTTypeText as String))
    NSPasteboard.generalPasteboard().setData(webImageData[index], forType: (kUTTypeData as String))
    return true
}

// Provide small version of image being dragged to accompany mouse cursor.
func collectionView(collectionView: NSCollectionView, draggingImageForItemsAtIndexPaths indexPaths: Set<NSIndexPath>, withEvent event: NSEvent, offset dragImageOffset: NSPointPointer) -> NSImage {
    let item = collectionView.itemAtIndex(indexPaths.first!.item)
    return (item?.imageView?.image)!.resizeImage(20, height: 20)
}

// Image is dropped on destination NSCollectionView.
func collectionView(collectionView: NSCollectionView, draggingSession session: NSDraggingSession, endedAtPoint screenPoint: NSPoint, dragOperation operation: NSDragOperation) {
    let pasteboardItem = NSPasteboard.generalPasteboard().pasteboardItems![0]
    let urlString = pasteboardItem.stringForType((kUTTypeText as String))
    let imageData = pasteboardItem.dataForType((kUTTypeData as String))

    // destinationImages is the data source for the destination collectionView. destinationImageURLs is used to keep track of the text urls.
    if urlString != nil {
        destinationImageURLs.insert(urlString!, atIndex: 0)
        destinationImages.insert(NSImage(data: imageData!)!, atIndex: 0)
        destinationCollectionView.reloadData()
        let selectionRect = self.favoritesCollectionView.frameForItemAtIndex(0)
        destinationCollectionView.scrollRectToVisible(selectionRect)
    }
}

extension NSImage {
    func resizeImage(width: CGFloat, height: CGFloat) -> NSImage {
        let img = NSImage(size: CGSizeMake(width, height))
        img.lockFocus()
        let ctx = NSGraphicsContext.currentContext()
        ctx?.imageInterpolation = .High
        drawInRect(NSRect(x: 0, y: 0, width: width, height: height), fromRect: NSRect(x: 0, y: 0, width: size.width, height: size.height), operation: .CompositeCopy, fraction: 1)
        img.unlockFocus()

        return img
    }
} 
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top