本文介绍了在iOS应用程序中通过WhatsApp共享图像/文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 是否可以通过Whatsapp在iOS应用中分享图片,文字或其他任何内容?我在google上搜索,但我只发现了有关Android实现的结果。Is it possible to share images, text or whatever you want through Whatsapp in a iOS app? I'm searching on google but I only found results talking about Android implementations.提前致谢!推荐答案现在有一个api可用于与WhatsApp进行交互: http://www.whatsapp.com/faq/en/iphone/23559013Now there is an api available for interacting with WhatsApp: http://www.whatsapp.com/faq/en/iphone/23559013打开其中一个URL的Objective-C调用如下:The Objective-C call to open one of these URLs is as follows:NSURL *whatsappURL = [NSURL URLWithString:@"whatsapp://send?text=Hello%2C%20World!"];if ([[UIApplication sharedApplication] canOpenURL: whatsappURL]) { [[UIApplication sharedApplication] openURL: whatsappURL];} 这篇关于在iOS应用程序中通过WhatsApp共享图像/文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-13 02:28