我UIButton
在 IB 中创建了一个 2 s 的单元格并将其子类化。如何在不重复使用的情况下使用它?(对于一个小的固定表)我尝试做类似的事情:
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;
}