0

所以我将 mogenerator 与 Core Data 一起使用,当我第一次加载 tableview 时,resultsController 返回具有有效属性的好对象。但是当我滚动表格时,所有重新加载的单元格都填充有从 resultsController 返回的具有空属性的对象。是缓存问题吗?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    // Configure the cell...
    Log *log = [self.resultsController objectAtIndexPath:indexPath];
    cell.textLabel.text = [NSString stringWithFormat:@"%@", log.text];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

    return cell;
}
4

1 回答 1

0

原来我不应该将 resultsController 放在 viewWillLoad 或 viewDidLoad 中。我将它放入它自己的访问方法中,现在它工作正常。

于 2012-04-05T07:34:01.793 回答