0

我配置了一个表格视图单元格,其表格单元格是从另一个xib加载的,文件名和身份都被调用,BlogViewControllerTableCell 大部分都可以正常工作,但是单元格中的某些内容在滚动时会不断变化。无论我使用数组值,还是简单地放入[indexpath row]。

以下是代码,不胜感激。谢谢。

- (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