[__NSCFDictionary objectAtIndex:]: unrecognized selector sent to instance

The problem is that feed is not a NSArray, but a NSDictionary.

Looking at the JSON, you likely want to access this array: [feed objectForKey:@"entry"]

Leave a Comment