我在PDFKit中以编程方式选择文本,点击后,所选单词以黄色突出显示2秒,然后消失。
let wordSelection = page?.selectionForWord(at: info.point)
pdfView.setCurrentSelection(wordSelection, animate: true)
对我来说,删除这个突出显示或替换为。清晰的颜色是完美的。
最佳答案
发现如果我将animate
属性设置为false
它就会消失。
pdfView.setCurrentSelection(wordSelection, animate: false)