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