以下のコードは、YouTube JSON をテーブル ビューに解析します。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = nil;
if (indexPath.row < [[_JSON valueForKeyPath:@"data.items.title"] count]) {
cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
cell.textLabel.text =
[[_JSON valueForKeyPath:@"data.items.title"] objectAtIndex:indexPath.row];
cell.detailTextLabel.text =
[[_JSON valueForKeyPath:@"data.items.description"] objectAtIndex:indexPath.row];
}
return cell;
}
JSON を取得するコードは次のとおりです。
- (IBAction)refresh:(id)sender {
NSURL *url = [NSURL URLWithString:kStrJsonURL];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id getJSON) {
_JSON = getJSON;
NSLog(@"%@", _JSON);
[self.tableView reloadData];
} failure:nil];
[operation start];
}
AFNetworking の概要を読む必要があります。
https://github.com/AFNetworking/AFNetworking/wiki/Getting-Started-with-AFNetworking
GitHub からサンプル プロジェクトをダウンロードして実行できます。
https://github.com/weed/p120805_YouTubeJsonParse