在UIPasteboard上解码“Apple Web Archive粘贴板类型”项

时间:2012-02-06 17:39:40

标签: iphone ios cocoa-touch ipad

我正在复制一个网页,希望看到如何复制复制到UIPasteBoard的字典。我目前在普通粘贴板上记录该项目如下:

UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];

for (NSDictionary *dict in pasteboard.items) {

    NSLog(@"Dict: %@", dict);
}

输出结果为:

Dict: {
    "Apple Web Archive pasteboard type" = <62706c69 73743030 d2010203 0d5f100f 57656253 75627265 736f7572 6365735f 100f5765 624d6169 6e526573 6f757263 65a104d4 05060708 090a0b0c 5e576562 5265736f 75726365 55524c5f 100f5765.............

我已尝试获取“Ap​​ple Web Archive粘贴板类型”键的字符串,如下所示,但没有成功:

NSString *string = [[NSString alloc] initWithData:[dict objectForKey:@""Apple Web Archive pasteboard type""] encoding:NSUTF8StringEncoding];

NSLog(@"item %@", string);

如何解码此密钥的数据?

4 个答案:

答案 0 :(得分:4)

Apple Web Archive粘贴板类型为Plist,用于发现密钥 - 使用Plist编辑器打开。 下面还有一小段代码(从粘贴的网页获取图像信息)

if ([[[UIPasteboard generalPasteboard] pasteboardTypes] containsObject:WEB_ARCHIVE]) {
    NSData* archiveData = [[UIPasteboard generalPasteboard] valueForPasteboardType:WEB_ARCHIVE];
    if (archiveData)
    {
        NSError* error = nil;
        id webArchive = [NSPropertyListSerialization propertyListWithData:archiveData options:NSPropertyListImmutable format:NULL error:&error];
        if (error) {
            return;
        }
        NSArray *subItems = [NSArray arrayWithArray:[webArchive objectForKey:@"WebSubresources"]];
        NSPredicate *iPredicate = [NSPredicate predicateWithFormat:@"WebResourceMIMEType like 'image*'"];
        NSArray *imagesArray = [subItems filteredArrayUsingPredicate:iPredicate];
        for (int i=0; i<[imagesArray count]; i++) {
            NSDictionary *sItem = [NSDictionary dictionaryWithDictionary:[imagesArray objectAtIndex:i]];
            UIImage *sImage = [UIImage imageWithData:[sItem valueForKey:@"WebResourceData"]];
            // handle images
        }
    }

}

答案 1 :(得分:1)

作为参考,存在用于访问iOS上的WebArchives的第三方独立库: http://www.cocoanetics.com/2011/09/decoding-safaris-pasteboard-format/ https://github.com/Cocoanetics/DTWebArchive

答案 2 :(得分:0)

在此处查看WebKit文档:WebArchive Class Reference

请记住,这是iOS上的“私人”课程。向此对象发送消息或以其他方式与其进行交互可能是您的应用在审核时被拒绝的理由。

答案 3 :(得分:-1)

你可以试试这个:

NSData *data = (NSData *) [dict objectForKey:[[dict allKeys] objectAtIndex:0]];