微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

swift3 – 如何在Swift 3中发送消息并链接到WhatsApp?

如何在 Swift 3中发送消息并链接到WhatsApp

我正在使用此代码
  Code

消息错误到控制台:

Failed for URL: “whatsapp://send?text=Check” – error: “This app is
not allowed to query for scheme whatsapp”

谢谢

解决方法

你应该试试这个:

注意:您必须在设备中安装whatsapp app.

斯威夫特3

var documentInteractionController: UIDocumentInteractionController = UIDocumentInteractionController()

@IBAction func whatsappShareText(_ sender: AnyObject)
{
    let originalString = "First Whatsapp Share"
    let escapedString = originalString.addingPercentEncoding(withAllowedCharacters:CharacterSet.urlQueryAllowed)

    let url  = URL(string: "whatsapp://send?text=\(escapedString!)")

    if UIApplication.shared.canopenURL(url! as URL)
    {
        UIApplication.shared.open(url! as URL,options: [:],completionHandler: nil)
    }
}

@IBAction func whatsappShareLink(_ sender: AnyObject)
{
    let originalString = "https://www.google.co.in"
    let escapedString = originalString.addingPercentEncoding(withAllowedCharacters:CharacterSet.urlQueryAllowed)
    let url  = URL(string: "whatsapp://send?text=\(escapedString!)")

    if UIApplication.shared.canopenURL(url! as URL)
    {
        UIApplication.shared.open(url! as URL,completionHandler: nil)
    }
}

在您的应用“info.plist”中添加代码

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>whatsapp</string>
</array>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐