Instagram iPhone Hook在UIDocumentInteractionController上显示其他图标

时间:2015-05-05 18:43:16

标签: ios instagram uidocumentinteraction

我的目标是通过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之外。

enter image description here

在不限制Instagram的情况下,通常在打开“更多”选项时会有更多活动。

enter image description here

除了Instagram之外,有什么方法可以清空所有共享选项吗?

0 个答案:

没有答案