为什么我的自定义单元格空白?

时间:2013-10-26 17:14:48

标签: ios uitableview custom-cell

感谢您提前提供的帮助 -

我有一个带自定义单元格的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;

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

您确定使用其类或笔尖注册了自定义单元格吗?此外,您要求基于向单元格询问其标识符来使用双端队列 - 但您必须确保为要尝试双击的每个类注册。最后,还要确保在storyboard或nib文件中设置identifier属性。