I am creating an simple app which load pdf file from a particular website into UIWEBVIEW
and i want to save it into iBook
. I was finding many tutorial but doesn't make sense.I want to know how i am able to save pdf file which i have loaded in UIWEBVIEW
and save it to iBook
. Thank you.
let urlPDF = NSURL(string: "https://www.tutorialspoint.com/swift/swift_tutorial.pdf")
Here is code that i loaded it to uiwebview
.
let request = NSURLRequest(url: urlPDF! as URL)
webView.loadRequest(request as URLRequest)