UITableViewCell NSInternalInconsistencyException の対処

2012/03/22  カテゴリー:未分類    タグ:タグ:



screenshot20100402at828

テーブルを作成中に
どうしても

‘NSInternalInconsistencyException’, reason: ‘UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:’

がでて、はまり、
数時間を過ごしてしまった。




一からチェックする

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];


のの後ろに

if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
が入ってない

これを追加すると
問題なく解決

Share on Google+Tweet about this on TwitterShare on Facebook