我有以下代码:
let subView = UIView(frame: .init(x: 100, y: 100, width: 100, height: 100))
subView.backgroundColor = .red
self.pdfView.layoutDocumentView()
self.pdfView.documentView?.addSubview(subView)
self.pdfView.documentView?.bringSubviewToFront(subView)
视图添加成功。但是,当我向下滚动时,比如说 10 页,然后返回到第 1 页,就会subview
消失。
关于如何使其永久显示的任何建议?
我知道我可以添加注释而不是视图。但是,我需要在视图上启用用户交互。