我试图将下载的pdf文件从DocumentsDirectory发送到iBooks,并将其保存在那里。我使用的代码是:
let url = URL(string: "itms-books://device_path_to_pdf_file/index.pdf")
if UIApplication.shared.canOpenURL(url) {
UIApplication.shared.openURL(url)
} else {
print("iBooks not installed")
}
在运行时,此代码在设备上打开iBooks但不显示那里的pdf文件。 我在设备上的Xcode 8.3-Beta和iOs 10.3上运行此代码。
有什么想法吗?谢谢。