I also see this behavior when sharing through the UIDocumentInteractionController, it previously worked fine. Instagram can break something?
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"];
source
share