Load gif file in imageView

#import "UIImage+animatedGIF.h"

NSURL *urlZif = [[NSBundle mainBundle] URLForResource:@"source" withExtension:@"gif"];
NSString *path=[[NSBundle mainBundle]pathForResource:@"source" ofType:@"gif"];
NSURL *url=[[NSURL alloc] initFileURLWithPath:path];
_imageS.image= [UIImage animatedImageWithAnimatedGIFURL:url];



Previous
Next Post »