0

由于我是 swift 和 iOS 的新手,我正在开发一个应用程序,我需要阅读 PDF 的内容并在 viewcontroller(textlabel) 上填充,请让我知道如何使用 swift

提前致谢

4

1 回答 1

0

您可能想阅读更多关于CGPDFDocument

一个快速的片段,将获得 PDF 的页数

var pdfDoc: CGPDFDocumentRef!
var numberOfPages: Int = 0
let pdfURL = NSBundle.mainBundle().URLForResource("myPDFDocument", withExtension: "pdf")
pdfDoc = CGPDFDocumentCreateWithURL(pdfURL)
numberOfPages = CGPDFDocumentGetNumberOfPages(pdfDoc) as Int
于 2015-07-08T17:42:06.113 回答