You can use two methods to customize the appearance of the section title.
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
and
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
They are in the UITableView delegated protocol . The first will allow you to create a custom view to display as the section title. The second simply ensures that you get the size you need so that your look is not cropped.
source share