Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this method for button click (download). The problem is that it is terminating due to an exception:

[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];
}

What is the problem?

share|improve this question
Why are you releasing image? You are not allocating it. – 7KV7 Mar 14 '11 at 11:00
that was by mistake !!! my url is not getting in to uiimage. UIImage image = [UIImage imageWithData: [NSData dataWithContentsOfURL:[jsonItem objectForKey:@"PictureURL"]]]; error: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '** -[NSCFString isFileURL]: unrecognized selector sent to instance 0xd552c0' – ketan rajput Mar 14 '11 at 12:27

2 Answers

It expects an NSURL as argument, not a string.

UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL: [NSURL URLWithString:@"http://ws.cdyne.com/WeatherWS/Images/thunderstorms.gif"]]];

EDIT:

To test if the data has loaded succesfully try something like

NSError* error = nil;
NSData* data = [NSData dataWithContentsOfURL:yourURL options:NSDataReadingUncached error:&error];
if (error) {
    NSLog(@"%@", [error localizedDescription]);
    [error release];
} else {
    NSLog(@"Data has loaded successfully.");
}
share|improve this answer
actuall in my code i am deriving url from { NSURL *jsonURL = [NSURL URLWithString:[jsonItem objectForKey:@"PictureURL"]]; } {NSLog(@"%@",[jsonItem objectForKey:@"PictureURL"]);} is also printing correct url but when using code { UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL: [NSURL URLWithString:string]]];} error is displayed (already explained) – ketan rajput Mar 14 '11 at 8:26
Hm, that doesn't make sense. What is the exact error message you get after calling UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL: [NSURL URLWithString:string]]];? – hennes Mar 14 '11 at 9:25
when i tried this: UIImage image = [UIImage imageWithData: [NSData dataWithContentsOfURL:[jsonItem objectForKey:@"PictureURL"]]]; it giving error :2011-03-14 15:19:42.119 XML[8388:20b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '** -[NSCFString isFileURL]: unrecognized selector sent to instance 0xd54bc0' 2011-03-14 15:19:42.121 XML[8388:20b] Stack: ( 807902715, ) – ketan rajput Mar 14 '11 at 9:49
You need to call UIImage image = [UIImage imageWithData: [NSData dataWithContentsOfURL:[NSURL URLWithString:[jsonItem objectForKey:@"PictureURL"]]]]; – hennes Mar 14 '11 at 9:52
when i tried this code, it passing null into image!! 2011-03-14 15:23:50.999 XML[8447:20b] image....(null) 2011-03-14 15:23:51.000 XML[8447:20b] width.....0.000000,height.....0.000000 – ketan rajput Mar 14 '11 at 9:52
show 8 more comments

The method dataWithContentsOfURL take a NSURL as argument not a NSString

[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://ws.cdyne.com/WeatherWS/Images/thunderstorms.gif"]]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.