1

我现在正在研究可可,所以对 mac 开发有点陌生。
我想从我的服务器打开 PDF。这可能PDFView吗?
如果有人在这方面指导我,那么它将对我非常有帮助。
是否有任何示例代码可以在 PDFView 中打开 PDF 文件?

提前致谢..!!!

4

3 回答 3

4

我得到了答案。。

至少为我工作.. :)

NSString *urlStr = [[NSBundle mainBundle] pathForResource:@"1.pdf" ofType:nil];
NSURL *url = [NSURL fileURLWithPath:urlStr];
PDFDocument *pdfDoc = [[PDFDocument alloc] initWithURL:url];
[pdfView setDocument:pdfDoc];
于 2011-11-10T08:36:35.410 回答
3

Swift 版本(别忘了导入 Quartz 模块)

    guard let docPath = NSBundle.mainBundle().pathForResource("1", ofType: "pdf") else { return }

    let docURL = NSURL.fileURLWithPath(docPath)
    let pdfDocument = PDFDocument(URL: docURL)
于 2016-08-31T00:37:57.070 回答
1

斯威夫特 3.0 版本:)

    guard let docPath = Bundle.main.path(forResource: "1", ofType: "pdf") else { return }

    let docURL = NSURL.fileURL(withPath: docPath)
    let pdfDocument = PDFDocument(url: docURL)
    uxPdf.document = pdfDocument
于 2017-04-12T11:26:25.707 回答