我正在尝试使用http://reddit.com/.json文件将 reddit frot 页面中的每个标题放入一个数组中。我在另一个站点上使用了相同的代码来返回只出现一次的东西。因为“标题”多次出现,所以我需要将每个都放入一个数组中。
- (void)fetchedData:(NSData *)responseData {
//parse out the json data
NSError *error;
NSDictionary *json = [NSJSONSerialization
JSONObjectWithData:responseData
options:kNilOptions
error:&error];
NSMutableArray *latestTitles = [json objectForKey:@"title"];
NSLog(@"titles: %@", latestLoans);
}
我认为这应该可行,但我编译标题:(null)