我有UITableView
这个标头的实现:
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return [[[UILocalizedIndexedCollation currentCollation] sectionTitles] objectAtIndex:section];
}
除此之外,它几乎是默认的。
当我滚动到表格视图的底部时,表格视图的标题会消失,而不会留下空白区域。如果我开始滚动,例如甚至改变偏移1 px我得到了回头。有没有想过为什么会出现这种情况?