Tomando tempo para carregar a imagem do URL para UIImageview
Estou usando este código para exibir a imagem do URL para o UIImageview
UIImageView *myview=[[UIImageView alloc]init];
myview.frame = CGRectMake(50, 50, 320, 480);
NSURL *imgURL=[[NSURL alloc]initWithString:@"http://soccerlens.com/files/2011/03/chelsea-1112-home.png"];
NSData *imgdata=[[NSData alloc]initWithContentsOfURL:imgURL];
UIImage *image=[[UIImage alloc]initWithData:imgdata];
myview.image=image;
[self.view addSubview:myview];
Mas o problema é que está demorando muito tempo para exibir a imagem no imageview.
Por favor me ajude...
Existe algum método para acelerar o processo ...