- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
? ? ? ? ? NSString *identifier = NSStringFromClass([BulletinCard2 class]);
? ? ? ? ? UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
? ? ? ? ? ?if (cell == nil) {
? ? ? ? ? ? ? ? ? cell = [[[NSBundle mainBundle] loadNibNamed:identifier owner:nil options:nil] objectAtIndex:0];
? ? ? ? ? ? ? ? ? cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
? ? ? ? ? ? if (cell && [cell isKindOfClass:[BulletinCard2 class]]) {
? ? ? ? ? ? ? ? ? ? BulletinCard2 *bulletinTitleCard = (BulletinCard2 *)cell;
? ? ? ? ? ? ? ? ? ? ? if (_bulletinInfo && bulletinTitleCard) {
? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ?}
return cell;
}
}
}