I am using a static grouped UITableView to display some settings to the user. Above each group I have a header with a title.
I want to customize the look of the table view and I want to use this look throughout the whole application. Therefore I have subclassed the UITableViewController and my TableViewControllers are inheriting from my subclass.
Is there a way to enter a title for a header using Interface Builder and in my UITableViewController subclass change the look of the header?
I tried retrieving the title using
[self tableView:self.tableView titleForHeaderInSection:section]but quickly after posting this question I realized it should have been called fromsuper. Therefore:[super tableView:self.tableView titleForHeaderInSection:section].The header can be customized using