Instagram iPhone Hooks iOS 11.2.5 instagram 29, feed 不打开文件,但是相机胶卷
Instagram iPhone Hooks iOS 11.2.5 instagram 29, feed not opening the file, but the camera roll
我的项目使用 UIDocumentInteractionController 来 copy/share 和图像到 Instagram,它工作了一段时间。
我 select 从 iOS 分享 sheet 编辑了 Instagram 应用程序。该图像已在 select 过滤器部分打开。
最近,图像现在在视图中打开,带有 x 关闭和两个按钮,一个用于 select 故事,另一个用于 select 提要,如果我 select进纸,然后打开相机胶卷,最后一张照片是 selected 或相机,但我从我的项目中共享的图像消失了。我找不到挂钩或 instagram 文档是否有变化。 share sheet opens
instagram app opens the file
if feed selected then the file or image is lost and only camera roll is avaiable
我在通过 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
Instagram 似乎在 35.0.
版本中修复了这个问题
我的项目使用 UIDocumentInteractionController 来 copy/share 和图像到 Instagram,它工作了一段时间。
我 select 从 iOS 分享 sheet 编辑了 Instagram 应用程序。该图像已在 select 过滤器部分打开。
最近,图像现在在视图中打开,带有 x 关闭和两个按钮,一个用于 select 故事,另一个用于 select 提要,如果我 select进纸,然后打开相机胶卷,最后一张照片是 selected 或相机,但我从我的项目中共享的图像消失了。我找不到挂钩或 instagram 文档是否有变化。 share sheet opens
instagram app opens the file if feed selected then the file or image is lost and only camera roll is avaiable
我在通过 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
Instagram 似乎在 35.0.
版本中修复了这个问题