我正在尝试在iOS上使用PDFKit向文档添加突出显示注释。
let highlight = PDFAnnotation(bounds: selection.bounds(for: page),
forType: PDFAnnotationSubtype.highlight,
withProperties: nil)
highlight.color = color
page.addAnnotation(highlight)
page.displaysAnnotations = true
使用上面的代码添加它们时,它们显示为两个不同形状的层。将它们保存到PDF文件并重新打开时,它们会正确显示。
在this screen capture中
使用此处提供的代码段,以相同的方式添加了顶部和底部的突出显示。最上面的一个已保存到pdf文档中,并在重新打开时按预期显示,最下面的一个已添加。
有谁知道如何正确显示它们(例如最上面的一个)而不用保存并重新打开文件?
最佳答案
因此,这是10.13中的已知错误。有一种解决方法,将页面滚动到另一边,然后返回到突出显示
您可以使用以下代码创建突出显示:
let page = self.pdfDocument?.page(at: 10)
let bounds = CGRect(x: 85.8660965, y: 786.8891167, width: 298.41, height: 12.1485)
let annotation = PDFAnnotation(bounds: bounds, forType: .highlight, withProperties: nil)
annotation.color = NSColor.blue
page?.addAnnotation(annotation)
然后,您需要滚动离开页面并返回到突出显示
func annotationScrollHack(page: PDFPage) {
guard let pdfDocument = self.pdfDocument else { return }
//When adding highlights to macOS 10.13 it seems like 2 highlights are added.
//If you scroll to a different page and back the "extra" highlight is removed
//This function scrolls to the first/last page in the book and then back to the current page
//rdar://34784917
let bookScrollView = self.pdfView.documentView?.enclosingScrollView
let currentVisibleRect = bookScrollView?.contentView.documentVisibleRect
if (0 ... 3).contains(pdfDocument.index(for: page)) {
if self.pdfView.canGoToLastPage {
self.pdfView.goToLastPage(self)
}
} else {
if self.pdfView.canGoToFirstPage {
self.pdfView.goToFirstPage(self)
}
}
if let currentVisibleRect = currentVisibleRect {
bookScrollView?.contentView.scroll(to: CGPoint(x: currentVisibleRect.origin.x, y: currentVisibleRect.origin.y))
}
}
苹果的回复:
关于ios - PdfKit高亮注释,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46487471/