我正在使用 NSView 进行拖放。
在要拖动的对象中,即 NSView 的子类中,我实现了 mouseDown: 方法如下:
@try {
NSPoint location;
NSSize size ;
NSPasteboard *pb = [NSPasteboard pasteboardWithName:@"CameraIconContainer"];
location.x = ([self bounds].size.width - size.width)/2 - 21.0;
location.y = ([self bounds].size.height - size.height)/2 - 7.0;
NSLog(@"mouseDown: location- (%f, %f)",location.x,location.y);
NSDictionary *iconViewDict = [[NSDictionary alloc] initWithObjectsAndKeys:[cameraNo stringValue],@"cameraNo",nil];
NSLog(@"iconViewDict - %@",iconViewDict);
NSData *data = [NSKeyedArchiver archivedDataWithRootObject:iconViewDict];
[pb declareTypes:[NSArray arrayWithObject:IconDragDataType] owner:self];
[pb setData:data forType:IconDragDataType];
[self dragImage:[NSImage imageNamed:@"camera_icon.png"] at:location offset:NSZeroSize event:e pasteboard:pb source:self slideBack:YES];
}
@catch (NSException * e) {
NSLog(@"CameraIconView (-mouseDown:), error - %@",e);
}
大多数时候它工作正常,但问题是 - 有时它会引发这个
异常:无效参数不满足:theWriteStream != NULL
在 mouseDown: 方法中,因为它拖拽的图像不断出现在屏幕上,即使选择了其他窗口也不会消失。
谁能建议我为什么会发生,我该如何解决?
谢谢,
米拉杰