gpt4 book ai didi

iphone - 解析 Twitter JSON

转载 作者:行者123 更新时间:2023-12-03 20:51:27 25 4
gpt4 key购买 nike

我已经编写了一些代码来从 Twitter 搜索中获取数据并将其放入 UITableView 中,但出现语法错误,指出 Novisible @interface for 'NSArray' 声明了选择器'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];
}

Here is the JSON data itself (按左上角的“查看器”)

有什么帮助吗?谢谢:)

最佳答案

这是因为您正在调用:

    NSString *text = [feed objectForKey:@"text"];

仔细观察:

[feed objectForKey:@"text"];

对象feed是一个NSArray:

    NSArray *feed = [allDataDictionary objectForKey:@"results"];

显然,NSArray 没有方法 objectForKey:,那是一个字典。

所以要么是你的拼写错误,要么是对 Objective-C 的混淆或误解。

关于iphone - 解析 Twitter JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14320255/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com