I'm having an html data that is being converted to pdf. Now I want to share that pdf via whatsapp. I tried to achieve it like so...
let pdfData = generatePDF(from: self.appDelegate.HTMLContent)
let activityViewController:UIActivityViewController = UIActivityViewController(activityItems: [pdfData], applicationActivities: nil)
self.present(activityViewController, animated: true, completion: nil)
But when I select the recipient for sending, get the message This item cannot be shared. Please select a different item
But the sharing can be done via message app. The problem is with whatsapp.
Did refer this link also..Share PDF through WhatsApp
But it didn't help...