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
I found the issue was that I was unable to actually grab the GIF from the file. I switched from using CGImageDestinationCreateWithURL
to CGImageDestinationCreateWithData
and used a CFMutableDataRef
to hold the Gif data. I don't know why, but that made saving to camera roll with writeImageDataToSavedPhotosAlbum
work.