我有一个带有UITableViewController的iPad应用程序.我正在使用我的表格部分设置标题标题
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
当表格加载时,如果我向下滚动太快,当屏幕上出现一个部分标题时,它将被截断为第一个字母并且......(即"假期"被标记为"H ......").如果我继续向下滚动,直到标题从视图的顶部离开,然后向上滚动到它,标题将正确显示.
有没有人经历过这个?
请确保您返回nil
的titleForHeaderInSection
是您不想要标题的部分,而不是@""
.
无论出于何种原因,iPad在滚动时使用空字符串的长度作为标题文本长度,然后不重绘标题(而在iPhone上则重绘).返回nil
不需要标题的部分会在iPhone和iPad上产生所需的行为.
例如,下面的代码正确绘制标题标题:
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { switch (section) { case NUM_SECTIONS-2: return @"Second to last"; break; case NUM_SECTIONS-1: return @"last"; break; default: return nil; break; } }
当快速滚动标题时,下面的代码显示"...":
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { switch (section) { case NUM_SECTIONS-2: return @"Second to last"; break; case NUM_SECTIONS-1: return @"last"; break; default: return @""; break; } }