UIButton
IB に2 つのセルを作成し、サブクラス化しました。再利用しないでどうやって使うの?(小さな固定テーブルの場合)次のようなことを試み
RaffleResultCell *cell = [tableView dequeueReusableCellWithIdentifier:nil];
ましたが、それではセルが表示されずUITableView
、空白のセルが表示されます。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
//Where we configure the cell in each row
id currentRaffle = [_winnings objectAtIndex:indexPath.row];
RaffleResultCell *cell = [tableView dequeueReusableCellWithIdentifier:@"raffleResCell"];
if (cell == nil) {
cell = [[RaffleResultCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"raffleResCell"];
}
return cell;
}