Im tableview
とcustom cell
を使用しています。問題は、私が実行したときにcells
が表示されていないということですuitableviewのカスタムセルは表示されません
私のカスタムcell
は、ラベルを持っていると私はISN cellForRowAtIndexPath
方法に従い「StatutoryMappingCell.h」
でそのoutlet
を定義している、
StatutoryMappingCell * cell = [tableView dequeueReusableCellWithIdentifier:@"myCell"];
if (!cell)
{
[tableView registerNib:[UINib nibWithNibName:@"KnowledgeMainCell" bundle:nil] forCellReuseIdentifier:@"myCell"];
cell = [tableView dequeueReusableCellWithIdentifier:@"myCell"];
}
return cell;
}
- (void)tableView:(UITableView *)tableView willDisplayCell:(StatutoryMappingCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.statMapping.text = [self.items objectAtIndex:indexPath.row];
}
私のコード。しかし、なぜそれはそうですか?
これはこれはあなたのインターフェイスビルダーで
あなたはストーリーボードまたはXIB –
を使用しているあなたはセクション –
の行数を宣言されたnibファイルのnibファイルの名前が何であるかを – PK86