将CGPDFDocumentRef添加到NSDictionary或NSArray

时间:2014-01-14 20:09:53

标签: ios objective-c

处理CGPDFDocumentRef对象的适当方法是什么,以便将其添加到NSArray,然后以CGPDFDocumentRef形式轻松检索回来?

2 个答案:

答案 0 :(得分:1)

只要在添加/访问时将CGPDFDocumentRef转换为适当的类型,就可以轻松地将CGPDFDocumentRef添加到NSArray或NSMutableArray。

以下是我测试的示例代码:

CFStringRef path;
CFURLRef url;
CGPDFDocumentRef document;

NSString *nsstringPath = [[NSURL pathForDocumentsDirectory] stringByAppendingPathComponent:@"test.pdf"];

path = CFStringCreateWithCString (NULL, [nsstringPath cStringUsingEncoding:NSUTF8StringEncoding], kCFStringEncodingUTF8);
url = CFURLCreateWithFileSystemPath (NULL, path, kCFURLPOSIXPathStyle, 0);

CFRelease (path);
document = CGPDFDocumentCreateWithURL (url);
CFRelease(url);
count = CGPDFDocumentGetNumberOfPages (document);

NSMutableArray *testArray = [NSMutableArray array];
[test addObject:(__bridge id)(document)];

CGPDFDocumentRef testPdf = (__bridge CGPDFDocumentRef)([testArray objectAtIndex:0]); 

以下是Apple文档的link,涵盖了免费桥接。它虽然涵盖了基金会框架,但应该提出一个想法。

希望这有帮助,干杯!

答案 1 :(得分:0)

今天早些时候使用不同的对象发布了,但我目前找不到它。

您可以创建要添加到阵列的NSValue对象。不知道它是如何工作的,只是在这里回填信息:

[NSValue valueForBytes:(pointer) objCType:@encode(CGPDFDocumentRef)];