I am trying to parse a Json file into the Table view and I am getting this error
[__NSCFDictionary objectAtIndex:]: unrecognized selector sent to instance and the ap
The problem is that feed is not a NSArray, but a NSDictionary.
feed
NSArray
NSDictionary
Looking at the JSON, you likely want to access this array: [feed objectForKey:@"entry"]
[feed objectForKey:@"entry"]
The top level object in your feed is a JSON object, not a JSON array. So the deserialisation gives you an NSDictionary, not an NSArray.