gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 03:32:09 25 4
gpt4 key购买 nike

感谢您提前提供的帮助 -

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

    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;

感谢您的帮助

最佳答案

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

关于ios - 为什么我的自定义单元格是空白的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19609545/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com