我有一个带有图像的面板,我想制作它以便您可以将文件(不是图像,图像只作为文件的图标转到服务器)复制到文件夹中“拖动“应用程序外部的图像以及接受拖入文件的任何其他应用程序(例如Finder)。我怎么能这样做?
我实现了NSDraggingSource协议,但我不确定如何使图像可拖动。它目前位于ImageView
内,位于ImageViewCell
内。
这是我实施的协议:
#import "DragNDropView.h"
@implementation
-(NSDragOperation)draggingSession:(NSDraggingSession *)session
sourceOperationMaskForDraggingContext: (NSDraggingContext) context{
switch(context){
case NSDraggingContextOutsideApplication:
return NSDragOperationCopy;
break;
default:
return NSDragOperationNone;
break;
}
}
-(void) draggingSession:(NSDraggingSession *)session willBeginAtPoint:(NSPoint) screenPoint{
NSPasteboard *pboard = [NSPasteboard pasteboardWithName:NSDragPboard];
NSPaseBoardItem *contents = [[NSPasteboardItem alloc]
inithWithPasteboardPreopertyList:SDKFileName ofType:NSFileContentsPboardType];
[pboard writeObjects[NSArray arrayWithObjects:contents, nil]];
}
-(void)drawRect:(NSRect)dirtyRect{
SDKFileName = @"example.example";
[super drawRect:dirtyRect];
}
@end
答案 0 :(得分:1)
我添加了方法- (id)initWithCoder(NSCode *)coder
,我还添加了
- (BOOL)acceptesFirstMouse:(NSEvent *)event { return YES; }