I have loading.gif image.
My Coding is:-
[cell.Vehicleimage sd_setImageWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@",[[DetailArray objectAtIndex:indexPath.row]valueForKey:@"resim1"]]] placeholderImage:[UIImage imageNamed:@"loading.gif"]];
My problem is that, i want to add gif image on placehoder of UIImageView. But animation is not working.
can anybody help me.
In iOS, .gif files are not supported. You have to go for workaround.
One option is to split image and run the animation to change images which makes it looks like gif animation.
For that One option:
You can load more than one gif images.
You can split your gif using the following ImageMagick command:
Second option:
Use third party library like below:
FLAnimatedImage
Third option
Implement using WebView like this:
}