Eu tenho um URL para uma imagem (peguei no UIImagePickerController), mas não tenho mais a imagem na memória (o URL foi salvo de uma execução anterior do aplicativo). Posso recarregar a UIImage do URL novamente?
Vejo que UIImage tem um imageWithContentsOfFile: mas tenho um URL. Posso usar o dataWithContentsOfURL do NSData: para ler a URL?
EDIT1
com base na resposta de @ Daniel, tentei o código a seguir, mas ele não funciona ...
NSLog(@"%s %@", __PRETTY_FUNCTION__, photoURL);
if (photoURL) {
NSURL* aURL = [NSURL URLWithString:photoURL];
NSData* data = [[NSData alloc] initWithContentsOfURL:aURL];
self.photoImage = [UIImage imageWithData:data];
[data release];
}
Quando o executei, o console mostra:
-[PhotoBox willMoveToWindow:] file://localhost/Users/gary/Library/Application%20Support/iPhone%20Simulator/3.2/Media/DCIM/100APPLE/IMG_0004.JPG
*** -[NSURL length]: unrecognized selector sent to instance 0x536fbe0
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSURL length]: unrecognized selector sent to instance 0x536fbe0'
Olhando para a pilha de chamadas, estou chamando URLWithString, que chama URLWithString: relativeToURL:; em seguida, initWithString: relativeToURL :, depois _CFStringIsLegalURLString, CFStringGetLength, forwarding_prep_0 , forwarding_prep_0 , encaminhamento e , em seguida, - [NSObject doesNotRecognizeSelector].
Alguma idéia de por que meu NSString (o endereço do photoURL é 0x536fbe0) não responde por muito tempo? Por que diz que não responde a - [comprimento NSURL]? Não sabe que param é um NSString, não um NSURL?
EDIT2
OK, o único problema com o código é a conversão de string para URL. Se eu codificar a string, tudo funcionará bem. Então, algo está errado com o meu NSString e, se não consigo descobrir, acho que isso deve ser uma pergunta diferente. Com esta linha inserida (colei o caminho do log do console acima), ele funciona bem:
photoURL = @"file://localhost/Users/gary/Library/Application%20Support/iPhone%20Simulator/3.2/Media/DCIM/100APPLE/IMG_0004.JPG";