3

Mac アプリケーションに「単純な」ドラッグ アンド ドロップを実装したいと考えています。ビューをドラッグし、それに応じて nib ファイルに「MyView」と入力しました。ただし、コンソールに応答がありません (プロトコル メソッドのいずれかがトリガーされるたびにメッセージをログに記録しようとします)。

次のように NSView をサブクラス化しました。

@interface MyView : NSView <NSDraggingDestination>{
    NSImageView* imageView;
}

次のように実装します。

- (id)initWithFrame:(NSRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {

        [self registerForDraggedTypes:[NSImage imagePasteboardTypes]];

        NSRect rect = NSMakeRect(150, 0, 400, 300);
        imageView = [[NSImageView alloc] initWithFrame:rect];

        [imageView setImageScaling:NSScaleNone];
        [imageView setImage:[NSImage imageNamed:@"test.png"]];
        [self addSubview:imageView];



    }

    return self;
}


- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender{
    NSLog(@"entered");
    return NSDragOperationCopy;

}

- (NSDragOperation)draggingUpdated:(id <NSDraggingInfo>)sender{
    return NSDragOperationCopy;

}


- (void)draggingExited:(id <NSDraggingInfo>)sender{
    NSLog(@"exited");

}
- (BOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender{
    NSLog(@"som");
    return YES;

}

- (BOOL)performDragOperation:(id<NSDraggingInfo>)sender {

    NSPasteboard *pboard = [sender draggingPasteboard];

    if ( [[pboard types] containsObject:NSURLPboardType] ) {
        NSURL *fileURL = [NSURL URLFromPasteboard:pboard];
        NSLog(@"%@", fileURL);
    }
    return YES;
}

- (void)concludeDragOperation:(id <NSDraggingInfo>)sender{
    NSLog(@"conclude sth");


}

- (void)draggingEnded:(id <NSDraggingInfo>)sender{
    NSLog(@"ended");


}

- (BOOL)wantsPeriodicDraggingUpdates{
    NSLog(@"wants updates");

}


- (void)updateDraggingItemsForDrag:(id <NSDraggingInfo>)sender NS_AVAILABLE_MAC(10_7){
}
4

1 に答える 1

11

誰かがまだこれを必要としている場合は、次を使用します。

[self registerForDraggedTypes:[NSArray arrayWithObjects: 
                       NSFilenamesPboardType, nil]];

それ以外の:

[self registerForDraggedTypes: 
                      [NSImage imagePasteboardTypes]]; // BAD: dropped image runs away, no draggingdestination protocol methods sent...

私のためにこの問題を解決しました。XIB が osX 10.5 をターゲットにしているため、これが機能すると思われます。NSFilenamesPboardType は 10.5 以前の「標準データ」UTI を表し、[NSImage imagePasteboardTypes] は 10.6 以降の標準データ UTI を返します。

ちなみに、- (BOOL)performDragOperation:(id NSDraggingInfo)senderでは、ドロップされたファイルのパスを取得できます。

 NSArray *files = [pboard propertyListForType:NSFilenamesPboardType];

ここで解決策を得ました:

http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/DragandDrop/Tasks/acceptingdrags.html#//apple_ref/doc/uid/20000993-BABHHIHC

于 2012-11-10T18:29:48.040 に答える