如何使用swift阅读iPhone中文档目录中的pdf

时间:2015-07-08 17:31:34

标签: ios iphone swift pdfviewer

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

提前致谢

1 个答案:

答案 0 :(得分: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