美文网首页
swift5 - 系统自带分享功能

swift5 - 系统自带分享功能

作者: promise96319 | 来源:发表于2019-07-14 15:47 被阅读0次
let text = "xxxx"
let image = UIImage(name: "xxxx")
let activityVC = UIActivityViewController(activityItems: [text, image], applicationActivities: nil)
// 如果是ipad, 那么需要使用pop的方式显示方向界面
if DeviceInfo.isiPad {
    let popOver = activityVC.popoverPresentationController
    popOver?.sourceView = view
    popOver?.sourceRect = CGRect(x: 0, y: 0, width: DeviceInfo.screenWidth, height: 340)
}     
present(activityVC, animated: true, completion: nil)

相关文章

网友评论

      本文标题:swift5 - 系统自带分享功能

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