美文网首页
IOS 社交分享

IOS 社交分享

作者: 越天高 | 来源:发表于2020-05-30 15:08 被阅读0次

    很多App中都有个“社交分享”的功能
    通过用户的分享,让更多的人去了解和使用这个App
    目前移动互联网应用程序推广的最重要手段之一

    在iOS中,实现“社交分享”的方法
    自己编写各个平台的分享代码(代码量较多)

    • 利用iOS自带的Social.framework
    let text = "今天天气不错"
           let image = UIImage(named: "color")
           let url = URL(string: "www.baidu.com")
           let items = [text, url] as [Any]
           
           let customShareVC = UIActivityViewController(activityItems: items, applicationActivities: nil)
           customShareVC.completionHandler =
           {(type,error) in
               
           }
           
           present(customShareVC, animated: true, completion: nil)
    

    如果我们的app没有通过其他的app的认证是不可以分享的,在使用的时候

    友盟分享

    相关文章

      网友评论

          本文标题:IOS 社交分享

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