我的应用程序有文件下载选项,它使用 alamofire 下载方法下载文件。下载完成后,我需要呈现文件的预览而不将其保存到内部/云存储中。我怎样才能实现这个类似whatsapp的功能,在下载文件后显示预览。
func downloadFile(fileUrl: URL) {
let destination = DownloadRequest.suggestedDownloadDestination(for: .documentDirectory)
Alamofire.download(fileUrl, to: destination)
.response(completionHandler: { (downloadResponse) in
self.dic.url = downloadResponse.destinationURL
self.dic.uti = downloadResponse.destinationURL!.uti
let rect = CGRect(x: 0, y: 0, width: 100, height: 100)
self.dic.presentOpenInMenu(from: rect, in: self.view, animated: true)
})
}