我似乎无法弄清楚如何从 TouchJSON 返回的字典中获取表示对象的字典。
例如:
如果我在这里使用格式的 JSON:
http://search.twitter.com/search.json?q=hello
如何在不必使用“for”语句将所有推文拉入数组的情况下获得带有“id”= x 的推文?
例如,不必这样做......因为我知道我想要访问的对象的“id”(JSON 键,而不是索引)
NSArray *tweetsArray = [resultsDictionary objectForKey:@"results"];
for (NSDictionary *tweetDictionary in tweetsArray) {
NSString *tweetText = [tweetDictionary objectForKey:@"text"];
[tweets addObject:tweetText];
}