我在这里先向您的帮助表示感谢-
我有一个带有自定义单元格的 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;
谢谢您的帮助