0

私はJsonを使用してデータを解析していますが、現在、データはディクショナリで利用可能であり、配列でも利用可能です。そのデータをテーブルビューに表示したいと思います。助けてくれませんか。

4

1 に答える 1

2
NSMutableDictionary* dicts = parseJSON;
...
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
{
    return dicts.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier: @"myCell"];    
    if (cell == nil) {
        cell =  [[[ UITableViewCell alloc ] initWithFrame:CGRectZero] autorelease];
    }
    cell.textLabel = [[dicts objectIndex:indexPath.row] objectforkey:@"namefield"];
    return cell;
}
于 2012-12-10T10:44:58.047 に答える