i got show the pdf with next lines
webView.load(decodeData, mimeType: "application/pdf", characterEncodingName: "utf-8", baseURL: URL(fileURLWithPath: ""))
however i cant find the way to download it, how can i download it using a button the next lines are a little part
if let form = eDocument{
self.title = "Follow"
if let decodeData = Data(base64Encoded: form.content, options: .ignoreUnknownCharacters) {
let str = String(decoding: decodeData, as: UTF8.self)
webView.load(decodeData, mimeType: "application/pdf", characterEncodingName: "utf-8", baseURL: URL(fileURLWithPath: ""))
}
}
thanks