class ViewController: UIViewController,UIDocumentInteractionControllerDelegate
{
let documentInteractionController = UIDocumentInteractionController(url: URL(fileURLWithPath: path))
documentInteractionController.delegate = self
documentInteractionController.presentPreview(animated: true)
}
func documentInteractionControllerViewControllerForPreview(_ controller: UIDocumentInteractionController) -> UIViewController
{
return self
}
above code i try on my apps, when click left menu , not able to show the pdf file. anyone got idea ?
I am showing here an example for download pdf from url link displaying in UIdocumentInteractionController in swift 4 as per your requirement
}