I want to share images, text, and audio at a time using WhatsApp from my app. I tried several solutions, but none of them worked.
I was try this code:
guard let url = URL(string: shareURLString) else {
return
}
let items: [Any] = [shareText, url, #imageLiteral(resourceName: "dog")]
let vc = VisualActivityViewController(activityItems: items, applicationActivities: nil)
vc.previewNumberOfLines = 10
presentActionSheet(vc, from: sender)
Can anyone tell me how we can share these three things on WhatsApp at once?