I want to integrate WhatsApp
sharing in my app but I don't want to use UIDocumentInteractionController
. Is there any way to share image using url scheme
? like we share text using url scheme using following code below
var whatsappURL:NSURL?= NSURL(string: "whatsapp://send?text=Hello%2C%20World!")
if (UIApplication.shared.canOpenURL(whatsappURL)) {
UIApplication.shared.openURL(whatsappURL)
}