我在表格视图中使用出队机制时遇到了麻烦,所以我决定一次加载所有单元格。好吧,我有一个带有标签的自定义单元格。发生的情况是所有单元格都已加载,但标签上没有信息。这是我的代码。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *CellIdentifier = @"MyCell";
MyCell *cell = [[MyCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
Prototipo *prototipo = [self.fetchedResultsController objectAtIndexPath:indexPath];
cell.lblIdentificador.text = [prototipo.identificador stringValue];
return cell;
}
感谢你们。