NSData dataWithContentsOfURL

Tengo este método para hacer clic en el botón (descargar). El problema es que está finalizando debido a una excepción:

[Session started at 2011-03-14 13:06:45 +0530.]
2011-03-14 13:06:45.710 XML[7079:20b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException',
reason: '*** -[NSCFString isFileURL]: unrecognized selector sent to instance 0x62b8'
-(IBAction) download
{
    UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL:@"http://ws.cdyne.com/WeatherWS/Images/thunderstorms.gif"]];
    [image release];
}

¿Cuál es el problema

Respuestas a la pregunta(2)

Su respuesta a la pregunta