使用网址方案直接将图片分享到WhatsApp

时间:2018-09-19 06:08:06

标签: ios swift whatsapp url-scheme whatsapi

我想在我的应用程序中集成WhatsApp共享,但是我不想使用UIDocumentInteractionController。有什么方法可以使用url scheme共享图像?就像我们使用下面的代码使用url方案共享文本

var whatsappURL:NSURL?= NSURL(string: "whatsapp://send?text=Hello%2C%20World!")
if (UIApplication.shared.canOpenURL(whatsappURL)) {    
        UIApplication.shared.openURL(whatsappURL) 
    }

1 个答案:

答案 0 :(得分:0)

我认为你做不到。

首先,Whatapps仅支持通过URLScheme发送文本。其次,如何将图像放入urlString中?将其转换为base64string吗?

您只能使用UIDocumentInteractionController

发送图像