是否有任何特定方法可以分享检测iOS手机上所有社交媒体应用的按钮?
示例:我的手机安装了whatsapp和twitter。所以,当我按下分享按钮时,只有whatsapp和twitter出来了,而不是facebook和手机上没有安装任何其他应用程序。
在android中,特别想使用这种方法。但是在iOS中我仍然无法找到它。
注意:我需要以编程方式使用Swift 3
任何帮助都非常有用,谢谢
答案 0 :(得分:5)
你应该试试这个:
@IBAction func shareImageButton(_ sender: UIButton)
{
// image to share
let image = UIImage(named: "Image")
// set up activity view controller
let imageToShare = [ image! ]
let activityViewController = UIActivityViewController(activityItems: imageToShare, applicationActivities: nil)
activityViewController.popoverPresentationController?.sourceView = self.view // so that iPads won't crash
// exclude some activity types from the list (optional)
activityViewController.excludedActivityTypes = [ UIActivityType.airDrop, UIActivityType.postToFacebook ]
// present the view controller
self.present(activityViewController, animated: true, completion: nil)
}