pdfView.documentView内部的子视图不断消失

时间:2018-12-12 21:42:48

标签: swift subview pdfview

我有以下代码:

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消失了。

关于如何使其永久显示的任何建议?

我知道我可以添加注释而不是视图。但是,我需要在视图上启用用户交互。

PDFView来自苹果的文档

0 个答案:

没有答案