2017-10-10 66 views
1

我使用PDFKit for iOS 11,使用搜索功能,我得到了一些PDFSelection元素。如何在PDF中突出显示与此选择对应的文本?如何突出显示PDFKit中的搜索结果 - iOS

我想这一点,但不工作:

selection.color = UIColor.red 
selection.draw(for: selection.pages.first!, active: true) 

回答

3

你忘了添加选择到PDFView:

@IBOutlet weak var pdfView: PDFView! 

pdfView.setCurrentSelection(selection, animate: true) 

而且它看起来像selection.draw是没有必要的一步。

相关问题