- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一个问题,我希望有人能帮助我。
我将 PDF 文件下载到文档目录
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, TRUE);
NSString *documentsDirectory = [paths objectAtIndex:0];
studioPath = [[documentsDirectory stringByAppendingPathComponent:@"test.pdf"] retain];
ASIHTTPRequest *request = [[ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://testURL.com/test.pdf"]] retain];
[request setDownloadDestinationPath:studioPath];
这不是全部代码,但我希望你明白我的意思。
之后我会展示这个PDF
CGPDFDocumentRef pdf;
CFStringRef fullPathEscaped = CFURLCreateStringByAddingPercentEscapes(NULL,(CFStringRef)studioPath, NULL, NULL,kCFStringEncodingUTF8);
CFURLRef docUrl = CFURLCreateWithFileSystemPath (NULL, fullPathEscaped, kCFURLPOSIXPathStyle, FALSE);
pdf = CGPDFDocumentCreateWithURL(docUrl);
但是当我使用互联网 url 而不是 studioPath 到它工作的 PDF 时,它总是崩溃,但我不会再下载 pdf 一次。
最佳答案
试试这个
CFURLRef pdfURL = (CFURLRef)[[NSURL alloc] initFileURLWithPath:[documentsDirectory stringByAppendingPathComponent:source]];
//file ref
CGPDFDocumentRef pdfRef = CGPDFDocumentCreateWithURL((CFURLRef) pdfURL);
关于iphone - 使用 CGPDFDocumentRef 显示下载的 pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4545681/
我知道之前有人问过这个问题,但我会更具体一些。 我有一个 CGPDFDocumentRef 文档,我想找到预告片,最好是 CGPDFDictionaryRef 的形式,这样我就可以查看它的 Encry
是否可以从 CGPDFDocumentRef 中检索文档的名称 最佳答案 “文档名称”是指文档文件名还是标题? 如果元数据中包含文档“标题”,则可以像这样检索它: char *titleKey
我正在构建一个报亭通用应用程序。当我下载一期杂志并打开它时,它运行正常,但是当我删除它,重新下载并打开它时,它会抛出以下错误: 2013-04-01 22:06:07.672 Magazine[143
我有一个问题,我希望有人能帮助我。 我将 PDF 文件下载到文档目录 NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDi
我将我的 PDF 从 SQLite 数据库获取到一个 NSData 变量中。现在我可以从这个 NSData 创建 CGPDFDocumentRef 的选项是什么? 或者我有什么选择来创建这个 CGPD
处理 CGPDFDocumentRef 对象的适当方法是什么,以便可以将其添加到 NSArray 中,然后轻松地在其 CGPDFDocumentRef 中检索回来形式? 最佳答案 您可以轻松地将 CG
对于 PDF 阅读器,我想通过对每一页进行“截图”来准备文档并将其保存到光盘中。第一种方法是 CGPDFDocumentRef document = CGPDFDocumentCreateWithUR
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: how to fit pdf page in entire view 我可以毫无问题地显示 PDF,但是,在
我是一名优秀的程序员,十分优秀!