为什么pdf注释Y位置从ios,pdfkit,swift中的页面底部开始

时间:2019-04-09 06:09:26

标签: ios swift pdfkit pdf-annotations

我试图在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位置星标。为什么是这样。希望您对此有所帮助。