I'm importing a JSON dictionary. I need to know the name of the keys to work with it.
The dictionary is loading the data ok:
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
[connection release];
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
[responseData release];
NSDictionary *results = [responseString JSONValue];
NSLog(@"tenga: %@",results);
but when I try to get the names of the keys the app crashes:
NSArray * keys = [results allKeys];
NSLog(@"keys: %@",keys); ...}
error message:
[__NSArrayM allKeys]: unrecognized selector sent to instance 0x5a16b30 2011-08-30 22:52:26.171 Twitter Search[1906:207] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSArrayM allKeys]: unrecognized selector sent to instance 0x5a16b30'
Why is allKeys not working?
How do I get the names for my keys so I can start working with the objects?
edit
Im using the http://code.google.com/p/json-framework Stig Brautaset json framework