0

我在这里先向您的帮助表示感谢-

我有一个带有自定义单元格的 UITableView。如果我插入一个断点并记录单元格的值,它是正确的,但是当我执行代码时,表格视图总是空白(但确实有正确数量的单元格)

    Cell *cell = (Cell *)[tableView dequeueReusableCellWithIdentifier:[Cell reuseIdentifier]];

if (cell == nil)
{
    cell = [Cell cell];
}

StoreData *currentStore = [_storeArray objectAtIndex:indexPath.row];
cell.phoneNumber.text = currentStore.phoneStr;
cell.address.text = currentStore.addressStr;

return cell;

谢谢您的帮助

4

1 回答 1

1

您确定您使用其类或 nib 注册了自定义单元格吗?此外,您要求 deque 基于向单元格询问其标识符 - 但您必须确保您注册了您尝试 deque 的每个类。最后,还要确保在情节提要或 nib 文件中设置标识符属性。

于 2013-10-26T18:05:47.357 回答