Imagens animadas no uiimageview

Como animar as imagens do serviço da web. Eu tenho o código para animar as imagens do pacote.Para carregar as imagens da url uma matriz

Esse código está anexado abaixo

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];

questionAnswers(2)

yourAnswerToTheQuestion