我正在尝试使用下面的一些代码将PDFView设置为指定的目标。
但是,设置完后,PDFView的目标位置与之前保存的位置不同。
@IBOutlet var pdfView: PDFView!
func saveDirection() {
previousDestination = pdfView.currentDestination!
}
func setDirection() {
pdfView.go(to: previousDestination)
}
我的代码中有任何错误吗?