我在viewDidLoad
中有这个UITableView * table = [[UITableView alloc] initWithFrame:self.tableView.frame style:UITableViewStyleGrouped];
self.tableView = table;
此代码也可能相关
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
if( [view isKindOfClass:[UITableViewHeaderFooterView class]] )
{
((UITableViewHeaderFooterView *)view).textLabel.textColor = [UIColor colorWithRed:123.0/255.0 green:21.0/255.0 blue:31.0/255.0 alpha:1.0];
((UITableViewHeaderFooterView *)view).contentView.backgroundColor = [UIColor whiteColor];
}
}
但是在我滚动浏览单元格之后,节标题仍然不会滚动。我试图使节标题行为像tableview单元格中的普通文本。当我向上滚动时,我希望它们立即开始向上移动并离开视图。
答案 0 :(得分:0)
进入界面构建器,单击tableview,然后选择样式 - >分组修复了这个问题。不知道为什么以编程方式进行操作