在Swift中使用PDFKIT搜索PDF

时间:2018-05-29 01:48:32

标签: objective-c swift

我非常陌生,所以请耐心等待。我试图弄清楚如何搜索PDF文档中的特定字符串。我假设我需要使用findString函数。我只是不知道应该如何实现参数。我正在使用Apple Docs.,但无法看到对此的描述。

谢谢!=]

  private func loadPDF(){
            guard
                let url = Bundle.main.url(forResource: pdfTitle, withExtension: "pdf"),
                let document = PDFDocument(url:url)
                else {fatalError()}
                pdfView.document = document

        }

func findString(_ string: String, 
    withOptions options: NSString.CompareOptions = []) -> [PDFSelection]

1 个答案:

答案 0 :(得分:1)

要获得匹配列表,请执行以下操作:

let matches = document.findString("foo", withOptions: .caseInsensitive)