Вот фрагмент кода, который вы можете использовать. Это представление заголовка таблицы ...
- (UIView *) tableView: (UITableView *) tableView viewForHeaderInSection: (NSInteger) раздел {
if(section==0){ UIView *view=[[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableview.frame.size.width, 44)];
[view setBackgroundColor:[UIColor redColor]]; UILabel
*label=[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];
[label setText:@"Hello!!"];
[label setBackgroundColor:[UIColor clearColor]];
[view addSubview:label]; return view;
}return nil;
}
Здесь Вы можете установить высоту для tableViewHeaderSection.