0

テーブル セルが別の xib から読み込まれるテーブル ビュー セルを構成しました。ファイル名と ID の両方が呼び出されます。配列値を使用しても、単に [indexpath 行] を配置しても。

以下はコードです。お役に立てれば幸いです。ありがとう。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"BlogViewControllerTableCell"];
    if (cell == nil) {
        // Load the top-level objects from the custom cell XIB.
        NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"BlogViewControllerTableCell" owner:self options:nil];
        // Grab a pointer to the first object (presumably the custom cell, as that's all the XIB should contain).
        cell = [topLevelObjects objectAtIndex:0];
    }
    student_name.text = [NSString stringWithFormat:@"%@", [[student_list objectAtIndex:[indexPath row]] objectForKey:@"name"]];
    return cell;
}
4

0 に答える 0