我有WebView,我在其中加载 webarchive 的内容。在同一个视图中,我有IKImageView插座。图像从 web 视图拖放到图像视图对我不起作用。
奇怪的是,当我将照片从 iPhoto 拖到同一个图像视图上时,它会起作用。此外,我可以将图像从我的 web 视图拖到NSScrollView上(它会创建一个指向图像的链接),我可以将同一张照片拖到新的邮件消息上(按预期创建图像)。
IKImageView 在 IB 中启用了“支持拖放”。
我在这里想念什么?
我有WebView,我在其中加载 webarchive 的内容。在同一个视图中,我有IKImageView插座。图像从 web 视图拖放到图像视图对我不起作用。
奇怪的是,当我将照片从 iPhoto 拖到同一个图像视图上时,它会起作用。此外,我可以将图像从我的 web 视图拖到NSScrollView上(它会创建一个指向图像的链接),我可以将同一张照片拖到新的邮件消息上(按预期创建图像)。
IKImageView 在 IB 中启用了“支持拖放”。
我在这里想念什么?
IKImageView
可能期待粘贴板NSFilenamesPboardType
,webview 如何处理拖动图像?
事实证明,在我的情况下处理 d'n'd 的最佳方法是 via WebArchivePboardType
。然后:
- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender
{
NSPasteboard *pboard;
NSDragOperation sourceDragMask;
sourceDragMask = [sender draggingSourceOperationMask];
pboard = [sender draggingPasteboard];
// Create image data from webarchive stored in a pasteboard.
NSData *image = [pboard dataForType:WebArchivePboardType];
WebArchive *webArchive = [[WebArchive alloc] initWithData:image];
// Let's see what are we dragging.
for (WebResource *subresource in [webArchive subresources])
{
NSString *mimeType = [subresource MIMEType];
if ([mimeType hasPrefix:expectedMimeTypeStartsWith])
{
NSData *data = [subresource data];
CFDataRef imgData = (CFDataRef)data;
CGDataProviderRef imgDataProvider = CGDataProviderCreateWithCFData (imgData);
CGImageRef image;
if ([mimeType hasSuffix:@"png"])
{
image = CGImageCreateWithPNGDataProvider(imgDataProvider, NULL, true, kCGRenderingIntentDefault);
}
else if ([mimeType hasSuffix:@"jpeg"])
{
image = CGImageCreateWithJPEGDataProvider(imgDataProvider, NULL, true, kCGRenderingIntentDefault);
}
[self setImage:image imageProperties:nil];
}
}
return YES;
}