NSData dataWithContentsOfURL

J'ai cette méthode pour le bouton de la souris (à télécharger). Le problème est qu'il est appelé à disparaître en raison d'une exception:

[Session a commencé à 2011-03-14 13:06:45 +0530.] 
2011-03-14 13:06:45.710 XML[7079:20b] *** fin de l'app en raison de uncaught exception 'NSInvalidArgumentException', 
raison: '*** -[NSCFString isFileURL]: unrecognized sélecteur envoyé à l'instance 0x62b8' 
-(IBAction) download
{
    UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL:@"http://ws.cdyne.com/WeatherWS/Images/thunderstorms.gif"]];
    [image release];
}

Quel est le problème?

source d'informationauteur Ketan