事前に助けてくれてありがとう-
カスタムセルを持つ 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;
助けてくれてありがとう