如何去除黄色选择突出显示?
How to remove yellow selection highlight?
我在 PDFKit 中以编程方式选择文本,点击后,所选单词以黄色突出显示 2 秒,然后消失。
let wordSelection = page?.selectionForWord(at: info.point)
pdfView.setCurrentSelection(wordSelection, animate: true)
删除此突出显示或将其替换为 .clear 颜色对我来说是完美的选择。
发现如果我将 animate
属性 设置为 false
它会消失。
pdfView.setCurrentSelection(wordSelection, animate: false)
我在 PDFKit 中以编程方式选择文本,点击后,所选单词以黄色突出显示 2 秒,然后消失。
let wordSelection = page?.selectionForWord(at: info.point)
pdfView.setCurrentSelection(wordSelection, animate: true)
删除此突出显示或将其替换为 .clear 颜色对我来说是完美的选择。
发现如果我将 animate
属性 设置为 false
它会消失。
pdfView.setCurrentSelection(wordSelection, animate: false)