tableView:viewForHeaderInSection: default value?

ios, objective-c, return, return-value, uitableview

Solution

The default header view is `nil`, for no header at all!

Problem

I want to have a single custom section header, with the rest being the default header. ``` - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { return ???; } ``` What do I return to just give the default header view?

Original source