Я использую Alamofire для загрузки документов с URL-адреса, документ может быть изображением, pdf или делать c et c. Приведенный ниже код используется для загрузки с использованием Alamofire и сохранения в каталоге документов и загрузки в веб-браузере.
func saveToDocumentDirectory(BillUrl: String) {
let manager = Alamofire.Session.default
let fileName = (BillUrl.components(separatedBy: "/").last) ?? ""
MBProgressHUD.showAdded(to: self.view, animated: true)
let destinationPath: DownloadRequest.Destination = { _, _ in
let documentsURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0];
let fileURL = documentsURL.appendingPathComponent(fileName)
return (fileURL, [.removePreviousFile, .createIntermediateDirectories])
}
manager.download(BillUrl, method: .get, parameters: nil, headers: nil, to: destinationPath)
.downloadProgress { (progress) in
print("Temporary URL: ")
print(progress.fractionCompleted)
}
.response { response in
switch response.result {
case .success(let pathUrl) :
MBProgressHUD.hide(for: self.view, animated: true)
print(pathUrl as Any) //pathUrl = file:///var/mobile/Containers/Data/Application/C651C521-31A7-4512-A393-6A94442472A0/Documents/1_DlatFlsbZ1fJSs-_aIJmlg_1588075057_13.png
self.displayAlert(path: pathUrl ?? URL(string: "")!)
case .failure(let error) :
MBProgressHUD.hide(for: self.view, animated: true)
print(error)
self.alert(message: "Something went wrong while proccessing your request", title: "Alert!")
}
}
}
fileprivate func displayAlert(path: URL) {
let alertController = UIAlertController(title: "Alert!", message: "file downloaded at \(path)", preferredStyle: .alert)
let OKAction = UIAlertAction(title: "OK", style: .default, handler: { action in
let webViewVC = storyBoard.instantiateViewController(withIdentifier: "WebViewVC") as! WebViewVC
webViewVC.webUrl = path
self.navigationController?.pushViewController(webViewVC, animated: true)
})
alertController.addAction(OKAction)
self.present(alertController, animated: true, completion: nil)
}
ниже код для класса веб-просмотра
class WebViewVC: UIViewController, WKNavigationDelegate {
var webView: WKWebView!
var webUrl = URL(string: "")
override func loadView() {
let webConfiguration = WKWebViewConfiguration()
webView = WKWebView(frame: .zero, configuration: webConfiguration)
webView.navigationDelegate = self
view = webView
}
override func viewDidLoad() {
super.viewDidLoad()
self.navigationController?.navigationBar.isHidden = false
self.navigationController?.interactivePopGestureRecognizer?.isEnabled = false
webView.allowsBackForwardNavigationGestures = true
webView.autoresizesSubviews = true
webView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
webView.load(URLRequest(url: webUrl!, cachePolicy: .reloadIgnoringLocalCacheData, timeoutInterval: 600.0))
}
override func viewDidLayoutSubviews() {
webView.frame = CGRect.init(x: 0, y: 0, width: self.view.frame.size.width , height: self.view.frame.size.height)
view = webView
}
}
Файл PDF правильно загружается в веб-просмотре , но изображение не загружается должным образом в веб-просмотре, а верхняя часть изображения скрывается за панелью навигации.
Я создал розетку WKWebView и также добавил ее в self.view.addSubview(webView)
, но каждый раз, когда он падает при webView = WKWebView(frame: .zero, configuration: webConfiguration)
Я надеваю Не знаю, что попробовать дальше. Заранее спасибо.