12

ストーリーボードを使用して、1 つのテーブルビューに 2 つ以上の異なるカスタム セルを追加したいと考えています。ストーリーボードなしで異なるセルを追加する方法を知っています。私はいつもこの方法でこれを行います:

static NSString *CellIdentifier = @"Cell";
CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
//pictureCell = [[DetailPictureCell alloc]init];//(DetailPictureCell *)[tableView dequeueReusableCellWithIdentifier: CellIdentifier];
pictureCell.header = true;
[pictureCell setHeader];
if (cell == nil) {
    if ([indexPath row] == 0) {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"HeaderAngebotViewCell" owner:self options:nil];
        NSLog(@"New Header Cell");
}
    if([indexPath row] ==1){
    NSArray *nib = [[NSBundle mainBundle]loadNibNamed:@"productCell" owner:self options:nil];
        cell = [nib objectAtIndex:0];
}

そして今、私の質問:ストーリーボードでこれを行うにはどうすればよいですか? 1 つのカスタム セルを追加することが可能です。しかし、2 つの異なるセルを追加することはできません。助けてください。

4

1 に答える 1