I've written some code to fetch data from a Twitter search and shove it in a UITableView, but I get a syntax error stating No visible @interface for 'NSArray' declares the selector 'objectForKey:
Here is the code that I am using to grab the JSON data:
-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSDictionary *allDataDictionary = [NSJSONSerialization JSONObjectWithData:webData options:0 error:nil];
NSArray *feed = [allDataDictionary objectForKey:@"results"];
NSString *text = [feed objectForKey:@"text"];
[array addObject:text];
[[self myTableView] reloadData];
}
Here is the JSON data itself (Press "Viewer" in the top left)
Any help? Thanks :)

