So the jist of what I'm doing is simple, getting some data from a server in JSON format. I'm using the default classes in Objective-C (specifically NSJSONSerialization) to convert the responseData gotten into JSON format.
So basically-
NSString* testURL=@"http://ws.audioscrobbler.com/2.0/?method=track.getsimilar&artist=Kendrick+Lamar&track=A.D.H.D&api_key=e3f53f2f2896b44ff158a586b8ee15c7&format=json";
NSData* data = [NSData dataWithContentsOfURL:[NSURL URLWithString:testURL]];
NSDictionary* json = [NSJSONSerialization
JSONObjectWithData:responseData //1
options:kNilOptions
error:&error];
NSArray* songList = [json objectForKey:@"similartracks"];
Problem is, later when I try to access an indivdual object in the array of JSOn data, like so,
NSDictionary* song1 = [songList objectAtIndex:0];
It's giving me this error,
* Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFDictionary objectAtIndex:]: unrecognized selector sent to instance 0x96e2b60'
Any ideas as to why this is happening?
I appreciate the help, coffeejay

jsonvariable right after you create it. NSLog will print out a representation that fairly well resembles the original JSON (though with()chars instead of{}, if I'm remembering correctly), so you can see what you have. Then again NSLog after each step of "peeling" the data. (Of course, you'd remove the NSLogs in your final code, and addisKindOfClasschecks.) – Hot Licks Oct 25 '12 at 23:57