J'essaie d'obtenir une image à partir d'une URL et elle ne semble pas fonctionner pour moi. Quelqu'un peut me diriger dans la bonne direction?
Voici mon code:
NSURL *url = [NSURL URLWithString:@"http://myurl/mypic.jpg"];
NSString *newIMAGE = [[NSString alloc] initWithContentsOfURL:url
encoding:NSUTF8StringEncoding error:nil];
cell.image = [UIImage imageNamed:newIMAGE];
Lorsque je débogue la nouvelle chaîne IMAGE est nulle, quelque chose ne fonctionne pas là.