我现在正在研究可可,所以对 mac 开发有点陌生。
我想从我的服务器打开 PDF。这可能PDFView
吗?
如果有人在这方面指导我,那么它将对我非常有帮助。
是否有任何示例代码可以在 PDFView 中打开 PDF 文件?
提前致谢..!!!
我得到了答案。。
至少为我工作.. :)
NSString *urlStr = [[NSBundle mainBundle] pathForResource:@"1.pdf" ofType:nil];
NSURL *url = [NSURL fileURLWithPath:urlStr];
PDFDocument *pdfDoc = [[PDFDocument alloc] initWithURL:url];
[pdfView setDocument:pdfDoc];
Swift 版本(别忘了导入 Quartz 模块)
guard let docPath = NSBundle.mainBundle().pathForResource("1", ofType: "pdf") else { return }
let docURL = NSURL.fileURLWithPath(docPath)
let pdfDocument = PDFDocument(URL: docURL)
斯威夫特 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