我的目标是通过UIDocumentInteractionController与Instagram分享照片,仅使用Instagram图标。
我按照https://instagram.com/developer/mobile-sharing/iphone-hooks/
中的说明进行操作以前工作得非常好,文档交互控制器只显示Instagram图标。
let writePath = NSTemporaryDirectory().stringByAppendingPathComponent("instagram.igo")
if !imageData.writeToFile(writePath, atomically: true) {
Swell.error("failed save image to path.")
}
let fileURL = NSURL.fileURLWithPath(writePath)
let documentController = UIDocumentInteractionController(URL: fileURL!)
documentController.UTI = "com.instagram.exclusivegram"
然而,最近,如果用户在“更多”中打开选项,其他图标将开始显示在Instagram之外。
在不限制Instagram的情况下,通常在打开“更多”选项时会有更多活动。
除了Instagram之外,有什么方法可以清空所有共享选项吗?