Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i need to load animated Gif image from URL in UIImageview.

If i use the normal code, the image didnt loaded.

If any other way is there to load animated Gif images.

Please help me.

Thanks.

share|improve this question
i need to load image from the following URL in UIImageview.... feedads.g.doubleclick.net/~at/K_fHnmr7a7T0pru2TjQC29TsPYY/1/di – Velmurugan Dec 8 '10 at 11:21

5 Answers

up vote 17 down vote accepted
UIImageView* animatedImageView = [[UIImageView alloc] initWithFrame:self.view.bounds];
animatedImageView.animationImages = [NSArray arrayWithObjects:    
                               [UIImage imageNamed:@"image1.gif"],
                               [UIImage imageNamed:@"image2.gif"],
                               [UIImage imageNamed:@"image3.gif"],
                               [UIImage imageNamed:@"image4.gif"], nil];
animatedImageView.animationDuration = 1.0f;
animatedImageView.animationRepeatCount = 0;
[animatedImageView startAnimating];
[self.view addSubview: animatedImageView];

You can load more than one gif images.

You can split your gif using the following ImageMagick command:

convert +adjoin loading.gif out%d.gif
share|improve this answer
1  
Hi, thanks for your reply... But i need, i wil load Gif image from url... – Velmurugan Dec 8 '10 at 11:12
Please format code properly in answers. – middaparka Dec 8 '10 at 11:16
i need to load image from the following URL in UIImageview.... feedads.g.doubleclick.net/~at/K_fHnmr7a7T0pru2TjQC29TsPYY/1/di – Velmurugan Dec 8 '10 at 11:19
NSData *mydata = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:myurl]]; UIImage *myimage = [[UIImage alloc] initWithData:imageData]; use this for reading from url then add this object to array – Ishu Dec 8 '10 at 11:27
4  
The iPhone OS cannot and will not display animated GIF images properly. The UIImage object cannot be used for this. Even though it supports GIF images, any animation will be discarded and only the first frame will be shown. So, if you need to display an animated GIF inside an iPhone app, you're screwed. Code needs to be written... Take a look here : pliep.nl/blog/2009/04/… – fyasar Aug 2 '11 at 14:00
show 1 more comment

This guys class does exactly what you want.

http://blog.stijnspijker.nl/2009/07/animated-and-transparent-gifs-for-iphone-made-easy/

share|improve this answer
1  
Buffer overflow waiting to happen – Sneakyness Aug 14 '12 at 8:17

If you must load the gif image from URL, you can always embed the gif in an image tag in a UIWebView.

share|improve this answer

This has found an accepted answered, but I recently came across the UIImage+animatedGIF UIImage extension. It provides the following category:

+[UIImage animatedImageWithAnimatedGIFURL:(NSURL *)url]

allowing you to simply:

#import "UIImage+animatedGIF.h"
UIImage* mygif = [UIImage animatedImageWithAnimatedGIFURL:[NSURL URLWithString:@"http://en.wikipedia.org/wiki/File:Rotating_earth_(large).gif"]];

Works like magic.

share|improve this answer

This doesn't meet the requirement of using a UIImageView, but maybe this would simplify things for you. Have you considered using a UIWebView?

NSString *gifUrl = @"http://gifs.com";
NSURL *url = [NSURL URLWithString: gifUrl];
[webView loadRequest: [NSURLRequest requestWithURL:url]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.