iOS: 如何清除PDFView?
iOS: How to clear PDFView?
我正在显示一些带有 PDFView
class 的 PDF 文件。有一个问题,当我加载或更好地说替换另一个文件时,上次加载的文件在加载新文件时仍然可见。
代码如下:
var pdfView = PDFView()
//MARK: - PDF KIT
func previewPDF(url:URL) {
if self.view.subviews.contains(pdfView) {
self.pdfView.removeFromSuperview() // Remove it
} else {
}
pdfView = PDFView(frame: PDFPreview.bounds)
pdfView.removeFromSuperview()
pdfView.backgroundColor = .clear
pdfView.displayMode = .singlePage
pdfView.autoScales = true
pdfView.pageShadowsEnabled = false
pdfView.document = PDFDocument(url: url)
thumbnail = PDFThumbnail(url: url, width: 240)
// I tried to nil PDFPreview, still nothing happened
PDFPreview.addSubview(pdfView)
}
在这里您将 pdfView 添加为 PDFPreview 的子视图,但在第一次尝试删除它时,您正在检查它是否存在于 self.view 的子视图中,但 实际上它在PDFPreview 的子视图。所以改成下面的代码
func previewPDF(url:URL) {
if PDFPreview.subviews.contains(pdfView) {
self.pdfView.removeFromSuperview() // Remove it
} else {
}
而且,当您第二次尝试使用 removeFromSuperview() 删除它时,您已经实例化了另一个 PDFView() 并丢失了对旧 PDFView 的引用,因此此时旧 PDFView 的删除也失败了。
替代解决方案:
如果您只是更改 pdf 文档,更好的解决方案是更改 PDFView 的文档 属性。例如:
if let document = PDFDocument(url: path) {
pdfView.document = document
}
我正在显示一些带有 PDFView
class 的 PDF 文件。有一个问题,当我加载或更好地说替换另一个文件时,上次加载的文件在加载新文件时仍然可见。
代码如下:
var pdfView = PDFView()
//MARK: - PDF KIT
func previewPDF(url:URL) {
if self.view.subviews.contains(pdfView) {
self.pdfView.removeFromSuperview() // Remove it
} else {
}
pdfView = PDFView(frame: PDFPreview.bounds)
pdfView.removeFromSuperview()
pdfView.backgroundColor = .clear
pdfView.displayMode = .singlePage
pdfView.autoScales = true
pdfView.pageShadowsEnabled = false
pdfView.document = PDFDocument(url: url)
thumbnail = PDFThumbnail(url: url, width: 240)
// I tried to nil PDFPreview, still nothing happened
PDFPreview.addSubview(pdfView)
}
在这里您将 pdfView 添加为 PDFPreview 的子视图,但在第一次尝试删除它时,您正在检查它是否存在于 self.view 的子视图中,但 实际上它在PDFPreview 的子视图。所以改成下面的代码
func previewPDF(url:URL) {
if PDFPreview.subviews.contains(pdfView) {
self.pdfView.removeFromSuperview() // Remove it
} else {
}
而且,当您第二次尝试使用 removeFromSuperview() 删除它时,您已经实例化了另一个 PDFView() 并丢失了对旧 PDFView 的引用,因此此时旧 PDFView 的删除也失败了。
替代解决方案: 如果您只是更改 pdf 文档,更好的解决方案是更改 PDFView 的文档 属性。例如:
if let document = PDFDocument(url: path) {
pdfView.document = document
}