2

我试图在 pdf 的页面上添加注释。有用。但不在所需的位置。这是我添加注释的方式。

let annotaionpos = CGRect(origin: points, size: CGSize(width: 80, height: 30))
let annotation = PDFAnnotation(bounds: annotaionpos, forType: .text, withProperties: nil)
annotation.backgroundColor = .purple
pdfView.currentPage?.addAnnotation(annotation)

在上面的代码中,x position是正确的,而y position似乎是相反的值。然后它从页面底部ex: if x = 100 and y = 10添加到正确的x 位置和y 位置星。为什么是这样。希望您对此有所帮助。

4