NSRangeException for empty array except there is an array?

Gu3rr3r0

New Member
I'm having this problem where I keep getting this error in my console:\[quote\] * Terminating app due to uncaught exception 'NSRangeException', reason: '* -[__NSArrayI objectAtIndex:]: index 0 beyond bounds for empty array'\[/quote\]Here is my code for retrieving the data from the XML document:\[quote\] CXMLDocument *worldweather = [[CXMLDocument alloc]initWithContentsOfURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://free.worldweatheronline.com/feed/weather.ashx?q=%@&format=xml&num_of_days=4&key=0ded69e02b171832121504",query]] options:0 error:nil]; weathercondition = [[[worldweather nodesForXPath:@"/data/current_condition/weatherIconUrl" error:nil] objectAtIndex:0] stringValue];\[/quote\]The location that Xcode is using is Williams, CA and the query sent is \[quote\] Williams+CA\[/quote\]When I plug this into my URL, it works and I get my XML file, but why am I getting this message in my console???This is driving me crazy. All help would be GREATLY appreciated! Thanks in advance!
 
Back
Top