Да, это возможно. Вам нужно использовать методы делегата UITableView и добавить View со всеми кнопками в нем в заголовок TableView.
Сначала установите делегат и источник данных UITableView, затем перейдите к следующему коду.
Для этого Вы можете следовать приведенному ниже коду:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
// create the parent view that will hold header Label
UIView* customView = [[UIView alloc] initWithFrame:CGRectMake(10.0, 0.0, 300.0, 44.0)];
// create the button object
UIButton * headerBtn = [[UIButton alloc] initWithFrame:CGRectZero];
headerBtn.backgroundColor = [UIColor clearColor];
headerBtn.opaque = NO;
headerBtn.frame = CGRectMake(10.0, 0.0, 100.0, 30.0);
[headerBtn setTitle:@"<Put here whatever you want to display>" forState:UIControlEventTouchUpInside];
[headerBtn addTarget:self action:@selector(ActionEventForButton:) forControlEvents:UIControlEventTouchUpInside];
[customView addSubview:headerBtn];
return customView;
}
После добавления вида в заголовок установите высоту для заголовка, поскольку по умолчанию это будет значение 20. Поэтому вам необходимо настроить его в соответствии с высотой своего просмотра, добавленной в заголовок.
- (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 100.0;
}
Надеюсь, это вам очень поможет ...:)