私のセルがテーブルに表示されない理由があります。アイデンティティインスペクタからUITableViewCellサブクラスが動作しない
ダブルチェックこれをSetTableViewCellこの場合、最も一般的なものは、クラスのものであるとのインタフェースビルダでのUITableViewCellオブジェクトを設定し忘れている
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"SetTableViewCell";
SetTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil){
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"SetTableViewCell" owner:nil options:nil];
for(id currentObject in topLevelObjects)
{
if([currentObject isKindOfClass:[SetTableViewCell class]])
{
cell = (SetTableViewCell *)currentObject;
break;
}
}
}
[self configureCell:cell atIndexPath:indexPath];
return cell;
}
Crashlogとスタックトレースをお願いします。 – Till