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