我编写了一些代码来从 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 数据本身(按左上角的“查看器”)
有什么帮助吗?谢谢 :)