Save generated GIF to camera roll?
Thanks for reading. I've created a GIF using methods from this question: Create and and export an animated gif via iOS? I'm trying to use the only method that appears to be able to save non JPG/PNG images to the camera roll, ALAssetLibrary 's writeImageDataToSavedPhotosAlbum:metadata:completionBlock: I save the Gif to the temp Directory like this: NSString *exportPath = [NSTemporaryDirectory() stringByAppendingString:@"/animated.gif"]; NSURL *fileURL = [NSURL fileURLWithPath:exportPath isDirectory:NO]; Then access the NSData like: NSData * gifData = [NSData dataWithContentsOfFile:fileURL