New to Xcode and obj-c.
Is it possible to sort through data structures in the console like you with JavaScript?
-(void)fetchInfo
{
    NSURL *url = [NSURL URLWithString:@"http://someurl"];
    NSData *jsonResults = [NSData dataWithContentsOfURL:url];
    NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:jsonResults
                                                             options:0
                                                               error:NULL];
   NSLog(@"CitiBike Results = %@", dictionary);
}
The results are logged, but I now want to play with the returned dictionary
 
     
    