添加常用应用以快速共享Swift

时间:2018-06-24 08:49:11

标签: ios swift ios8-share-extension

我正在开发一种共享功能,该功能已经实现了基本的共享部分,并且运行良好。下面是相同的代码

 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)
            }

上面的代码运行良好,并提供了如屏幕快照中所示的输出enter image description here

我想要的是有一个额外的图标/选项来共享常用应用程序的内容。 例如我经常使用Whatsapp,因此共享窗口应在“更多”旁边显示WhatsApp图标。

任何帮助将不胜感激。 TIA

1 个答案:

答案 0 :(得分:1)

无法完成此操作,因为共享表是Apple提供的库,只有用户可以自己重新排列图标!