У меня есть NSCollectionView, который я хочу изменить. Я использую макет потока, делегат и источник данных установлен в мой ViewController. Я также зарегистрировал свой тип сопротивления, но я только получить вызов делегата для:Переупорядочение NSCollectionView с (компоновкой потока)
- (BOOL)collectionView:(NSCollectionView *)collectionView canDragItemsAtIndexes:(NSIndexSet *)indexes withEvent:(NSEvent *)event;
, но не для других вызовов делегата. Вот мой исходный код ViewController:
#import "ViewController.h"
#import "CollectionViewItem.h"
@interface ViewController()
@property(nonatomic, strong) NSArray *strings;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do view setup here.
}
- (void)awakeFromNib
{
self.strings = @[@"a", @"b", @"c", @"d", @"e", @"f", @"g", @"h"];
NSArray *supportedTypes = [NSArray arrayWithObjects:@"CustomDDType", nil];
[self.collectionView registerForDraggedTypes:supportedTypes];
}
#pragma mark CollectionView DataSource
- (NSInteger) numberOfSectionsInCollectionView:(NSCollectionView *)collectionView
{
return 1;
}
- (NSInteger) collectionView:(NSCollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
return self.strings.count;
}
- (NSCollectionViewItem *) collectionView:(NSCollectionView *)collectionView itemForRepresentedObjectAtIndexPath:(NSIndexPath *)indexPath
{
CollectionViewItem *item = [collectionView makeItemWithIdentifier:@"CollectionViewItem" forIndexPath:indexPath];
item.myTitle.stringValue = [self.strings objectAtIndex:indexPath.item];
return item;
}
#pragma mark Drag/Drop
- (BOOL)collectionView:(NSCollectionView *)collectionView canDragItemsAtIndexes:(NSIndexSet *)indexes withEvent:(NSEvent *)event {
NSLog(@"canDragItems");
return YES;
}
-(NSDragOperation)collectionView:(NSCollectionView *)collectionView validateDrop:(id<NSDraggingInfo>)draggingInfo proposedIndex:(NSInteger *)proposedDropIndex dropOperation:(NSCollectionViewDropOperation *)proposedDropOperation {
NSLog(@"Validate Drop");
return NSDragOperationMove;
}
-(BOOL)collectionView:(NSCollectionView *)collectionView writeItemsAtIndexes:(NSIndexSet *)indexes toPasteboard:(NSPasteboard *)pasteboard
{
NSLog(@"Write Items at indexes : %@", indexes);
NSData *indexData = [NSKeyedArchiver archivedDataWithRootObject:indexes];
[pasteboard declareTypes:@[@"CustomDDType"] owner:self];
[pasteboard setData:indexData forType:@"CustomDDType"];
return YES;
}
- (BOOL)collectionView:(NSCollectionView *)collectionView acceptDrop:(id<NSDraggingInfo>)draggingInfo index:(NSInteger)index dropOperation:(NSCollectionViewDropOperation)dropOperation {
NSLog(@"Accept Drop");
NSPasteboard *pBoard = [draggingInfo draggingPasteboard];
NSData *indexData = [pBoard dataForType:@"CustomDDType"];
NSIndexSet *indexes = [NSKeyedUnarchiver unarchiveObjectWithData:indexData];
NSInteger draggedCell = [indexes firstIndex];
return YES;
}
@end
Я что-то пропустил? Я не могу использовать новые вызовы делегатов, представленные в 10.11, потому что мой проект должен работать раньше.
Можете ли вы использовать схему потока до 10.11? – Willeke
Спасибо за этот намек. Я думаю, что это невозможно. В настоящее время изменение представления коллекции на макет массива содержимого. – Matt
У меня такая же проблема, и это сводит меня с ума. Вы нашли какое-то решение тем временем? – JFS