I'm trying to save a GIF from URL to Camera Roll with the following code:
var image = UIImage(data: NSData(contentsOfURL: self.imageView.sd_imageURL())!)
UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil)
but after saving, the GIF become a still image, anyone can help me? Thanks!