我想在我的应用程序中集成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)
}
答案 0 :(得分:0)
我认为你做不到。
首先,Whatapps仅支持通过URLScheme
发送文本。其次,如何将图像放入urlString中?将其转换为base64string吗?