我正在开发一种共享功能,该功能已经实现了基本的共享部分,并且运行良好。下面是相同的代码
let message = "Download the app from the link below"
//Set the link to share.
if let link = NSURL(string: "http://yoururl.com") {
let objectsToShare = [message,link] as [Any]
let activityVC = UIActivityViewController(activityItems: objectsToShare, applicationActivities: nil)
activityVC.excludedActivityTypes = [UIActivityType.airDrop, UIActivityType.addToReadingList]
self.present(activityVC, animated: true, completion: nil)
}
我想要的是有一个额外的图标/选项来共享常用应用程序的内容。 例如我经常使用Whatsapp,因此共享窗口应在“更多”旁边显示WhatsApp图标。
任何帮助将不胜感激。 TIA
答案 0 :(得分:1)
无法完成此操作,因为共享表是Apple提供的库,只有用户可以自己重新排列图标!