Отредактированный ответ:
Ты мог бы сделать это. Инициализируйте 2 кнопки или 2 вида в ..
В ячейке ForRowIndexPath:
UIView * superView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 45)];
[superView addSubview:view1];
[superView addSubview:view2];
// You should make sure that CGRectMake of view1 + view 2 = superView //
Check if (indexPath.row == lastRow)
{
[cell addSubview: superView]
}
Оригинальный ответ:
Вы должны использовать
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
Я думаю, что точный ответ, который вы ищете, доступен здесь !!