Instagram iPhone Hooks iOS 11.2.5 instagram 29,请勿打开文件,但相机滚动

我用的项目使用UIDocumentInteractionController来复制/共享和映像到Instagram,它运行良好一段时间。

我一从iOS共享表中选择了Instagram应用程序。 图像在选择filter部分中打开。

最近,图像现在在一个视图中打开,有一个x关闭和两个按钮,一个用于选择故事,另一个用于选择提要,如果我选择提要,则打开相机胶卷并选择最后一张照片或相机但是我从我的项目中分享的图像消失了。 我无法找到钩子或Instagram文档是否有变化。 共享表打开

如果选择了Feed, Instagram应用程序将打开文件 ,然后文件或图像丢失,只能使用相机胶卷

Instagram似乎已经在35.0版本中解决了这个问题

通过UIDocumentInteractionController共享时,我也看到了这种行为,以前工作正常。 Instagram可能已经破坏了什么?

NSData *imageData = UIImageJPEGRepresentation(self.image, 1.0); NSString *writePath = [NSTemporaryDirectory() stringByAppendingPathComponent:@"instagram.igo"]; if (![imageData writeToFile:writePath atomically:YES]) { [self activityDidFinish:NO]; return; } NSURL *fileURL = [NSURL fileURLWithPath:writePath]; self.documentController = [UIDocumentInteractionController interactionControllerWithURL:fileURL]; self.documentController.delegate = self; [self.documentController setUTI:@"com.instagram.exclusivegram"]; // Presentation logic