I\'m using a UITableView
to layout content \'pages\'. I\'m using the headers of the table view to layout certain images etc. and I\'d prefer it if they didn\'t
To remove the floating section header sections completely, you can do this:
- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
return [[UIView alloc] init];
}
return nil
doesn't work.
To disable floating but still show section headers you can provide a custom view with its own behaviours.