UITableViewController truncating section header title
- by dl
I've got an iPad app with a UITableViewController. I am setting the header titles for my table sections using
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
When the table loads, if I scroll down too quickly, when a section header appears on screen it will be truncated to the first letter and ... (ie "Holidays" is trucated to "H..."). If I keep scrolling down until the header goes off the top of the view and then scroll back up to it, the title appears correctly in full.
Has anyone ever experienced this?