Используйте UITableView в качестве другого tableView.talbeHeaderView
Я использую tableView(с именем tableViewTwo) в качестве другого tableView.talbeHeaderView
TableViewTwo не может прокрутить
Почему и что я могу сделать
UIView *view1 = [[UIView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 12)];
view1.backgroundColor = GL_TABLEVIEW_BACKGROUD_COLOR;
UIView *tableHeaderView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, CGRectGetMaxY(self.lineGroupView.frame))];
tableHeaderView.backgroundColor = [UIColor whiteColor];
[tableHeaderView addSubview:view1];
[tableHeaderView addSubview:self.candleTopV];
[tableHeaderView addSubview:self.lineGroupView];//it is a tableview
tableView.tableHeaderView = tableHeaderView;
код: github: https://github.com/CoderYLZhang/tableHeaderViewTest