Twitter の検索からデータを取得して に押し込むコードをいくつか書きましたUITableView
が、次のような構文エラーが表示されます。No visible @interface for 'NSArray' declares the selector 'objectForKey:
JSON
データを取得するために使用しているコードは次のとおりです。
-(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];
}
こちらがJSONデータそのものです(左上の「Viewer」を押してください)
何か助けはありますか?ありがとう :)