美文网首页
iOS Facebook与Twitter share

iOS Facebook与Twitter share

作者: KingWorld | 来源:发表于2021-11-05 16:58 被阅读0次

    The Facebook, Twitter, and Other apps options have been removed in the Settings app.

    That apps will now be treated like other apps, using the iOS sharing extensions

    let share = [image, text, url]
    let activityViewController = UIActivityViewController(activityItems: share, applicationActivities: nil)
    activityViewController.popoverPresentationController?.sourceView = self.view
    self.present(activityViewController, animated: true, completion: nil)
    
    

    You can also use third party SDK for individual sharing

    Facebook Sharing Doc

    Twitter Sharing Doc


    翻译:

    Settings应用中的Facebook,Twitter和其他应用选项已被删除.

    现在可以使用iOS sharing extensions

    将这些应用与其他应用一样对待

    let share = [image, text, url]
    let activityViewController = UIActivityViewController(activityItems: share, applicationActivities: nil)
    activityViewController.popoverPresentationController?.sourceView = self.view
    self.present(activityViewController, animated: true, completion: nil)
    

    您还可以使用第三方SDK进行个人共享

    Facebook共享文档

    Twitter共享文档

    相关文章

      网友评论

          本文标题:iOS Facebook与Twitter share

          本文链接:https://www.haomeiwen.com/subject/wbprzltx.html