I\'ve created a UITableView in Interface Builder using storyboards. The UITableView is setup with static cells and a numb
UITableView
storyboards
static cells
titleForHeaderInSection is a delegate method of UITableView so to apply header text of section write as follows,
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{ return @"Hello World"; }