J'ai un petit problème, je l'ai mis en œuvre la méthode suivante pour ouvrir une image:Appeler une méthode dans viewDidLoad()
- (void)ladeImage {
id path = @"http://172.23.1.63:8080/RestfulJava/pics";
NSURL *url = [NSURL URLWithString:path];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[UIImage alloc] initWithData:data];
UIImageView *imgView = [[UIImageView alloc] initWithImage:img];
[self.view addSubview:imgView];
}
Mais comment je peux mettre en œuvre cette méthode dans le viewDidLoad() Méthode de cette classe. Quelqu'un pourrait m'aider, s'il vous plaît?
oh oui, c'est ainsi que j'ai cherché! – Marco
Super! Vous pourriez envisager d'accepter la réponse, alors: p – Toastor