UITableViewHeaderFooterView标题视图在reloadData

时间:2017-06-13 15:50:12

标签: objective-c iphone uitableview ipad uitableviewsectionheader

我已将UITableView分组。

这是我的标题视图方法 - 注意我做了它所以它只加载一次而不是重新加载元素它只返回headerView如果它已经有子视图(我需要这个因为我在headerView中有元素改变状态我不希望他们重新加载):

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
static NSString *headerReuseIdentifier = @"myHeader";

UITableViewHeaderFooterView *headerView = [tableView dequeueReusableHeaderFooterViewWithIdentifier:headerReuseIdentifier];
if (headerView == nil) {
    headerView = [[UITableViewHeaderFooterView alloc] initWithReuseIdentifier:headerReuseIdentifier];//[tableView dequeueReusableHeaderFooterViewWithIdentifier:headerReuseIdentifier];
    CGRect frame=CGRectMake(0, 0, tableView.bounds.size.width, 44);
    headerView.frame=frame;
}

if (headerView.contentView.subviews.count!=0){
    return headerView;//do not reload 
}
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(5, 0, tableView.frame.size.width-85, 44)];
    [label setFont:[UIFont boldSystemFontOfSize:16]];
    NSString *name=@"not found";
    [label setText:name];

    headerView.backgroundColor=[UIColor clearColor];
    [headerView.contentView addSubview:label];
    //... etc elements

return headerView;
}

我也为单元格实现了类似的逻辑,即如果子视图已经添加到单元格中,它们不会重新加载元素,只是为了看它是如何在那里工作的:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

if (cell.contentView.subviews.count!=0) {
    return cell;//do not reload 
}

//adding elements here...
return cell;
}

=============================================== ======================

这里第一次看起来如何,注意步骤:1和步骤:2按正确的升序排列enter image description here

现在,问题是,当调用[myTableView reloadData]时,表格如下所示:enter image description here

注意:headerView视图是向后的!但是,单元格总是以正确的顺序显示。

如果再次调用[myTableView reloadData] - headerViews将以正确的顺序显示。

我可以通过避免调用reloadData来阻止这种情况发生,但是我需要在单元格中而不是在headerViews中重新加载数据。

如果有人经历过此headerViews翻转 - 你是如何修复它的?

Xcode 8.3.2,在iPad iOS9.0模拟器上运行

完整代码,可让您测试错误的头视图重新排序:

.h文件

@interface TableTestViewController : UIViewController
@property(strong,nonatomic)IBOutlet UITableView *myTable;
@property(strong,nonatomic)NSMutableArray *steps;
@end

.m文件

#import "TableTestViewController.h"

@interface TableTestViewController ()

@end

@implementation TableTestViewController
@synthesize steps,myTable;

- (void)viewDidLoad {
[super viewDidLoad];
steps=[[NSMutableArray alloc]initWithObjects:@"Step 1",@"Step 2", nil];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return steps.count;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 1;
}

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
return 44.0;
}

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
static NSString *headerReuseIdentifier = @"myHeader";

UITableViewHeaderFooterView *headerView = [tableView dequeueReusableHeaderFooterViewWithIdentifier:headerReuseIdentifier];
if (headerView == nil) {
    headerView = [[UITableViewHeaderFooterView alloc] initWithReuseIdentifier:headerReuseIdentifier];//[tableView dequeueReusableHeaderFooterViewWithIdentifier:headerReuseIdentifier];
    CGRect frame=CGRectMake(0, 0, tableView.bounds.size.width, 44);
    headerView.frame=frame;
}

if (headerView.contentView.subviews.count!=0) {
    return headerView;//do not reload when running
}

while (headerView.contentView.subviews.count) {
    id subview=[headerView.contentView.subviews objectAtIndex:0];
    [subview removeFromSuperview];
}

headerView.backgroundColor=[UIColor clearColor];

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(5, 0, tableView.frame.size.width-85, 44)];
[label setFont:[UIFont boldSystemFontOfSize:16]];
[label setText:[steps objectAtIndex:section]];


[headerView.contentView addSubview:label];

    int btnSz=tableView.bounds.size.width/6;
    UIButton *startStepBtn = [[UIButton alloc]initWithFrame:CGRectMake(btnSz*5+5 ,5, 30, 30)];
    [startStepBtn setTitle:@"" forState:UIControlStateNormal];
    startStepBtn.tag=section+1000;
    startStepBtn.enabled=NO;
    [startStepBtn addTarget:self action:@selector(startStep:) forControlEvents:(UIControlEvents)UIControlEventTouchUpInside];

    [headerView.contentView addSubview:startStepBtn];


return headerView;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
int i=1;
return 60*ceil((double)i/5)+10;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

if ([cell.contentView.subviews count]!=0) {
    return cell;//do not reload when running
}

//clear 1st
while( [cell.contentView.subviews count] ){
    id subview = [cell.contentView.subviews objectAtIndex:0];
    [subview removeFromSuperview];
}

int btnSz=tableView.bounds.size.width/6;

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(5, 0, tableView.frame.size.width-85, 44)];
[label setFont:[UIFont boldSystemFontOfSize:16]];
[label setText:[steps objectAtIndex:indexPath.section]];
[cell.contentView addSubview:label];

CGRect frame;

frame = CGRectMake(btnSz*5+5 ,5, 30, 30);
    UIButton *delStepBtn = [[UIButton alloc]initWithFrame:frame];
    [delStepBtn setTitle:@"❌" forState:UIControlStateNormal];
    [delStepBtn addTarget:self action:@selector(deleteStep:) forControlEvents:(UIControlEvents)UIControlEventTouchUpInside];
    [cell.contentView addSubview:delStepBtn];

    frame = CGRectMake(btnSz*5+5 ,5+30, 30, 30);
    UIButton *editStepBtn = [[UIButton alloc]initWithFrame:frame];
    [editStepBtn setTitle:@"" forState:UIControlStateNormal];
    [editStepBtn addTarget:self action:@selector(editStep:) forControlEvents:(UIControlEvents)UIControlEventTouchUpInside];
    [cell.contentView addSubview:editStepBtn];

return cell;
}

-(void)editStep:(id)sender{
[myTable reloadData];
}

@end

实现,您将看到标题按升序排列,触摸锤子按钮使表格重新加载,标题现在将按降序排列,再次触摸它们并返回升序。

然而,单元格内容始终保持原样,因为它应该按升序排列。

2 个答案:

答案 0 :(得分:1)

UITableViewHeaderFooterView是可重复使用的视图,因此您无法确保UITableView每次都返回完全相同的视图。

我建议创建一个UITableViewHeaderFooterView的子类,并在某些数据源中保存状态。

如果您不想这样做,作为一种解决方法,您可以为每个部分使用唯一的重用标识符。 在这种情况下,您应该替换

static NSString *headerReuseIdentifier = @"myHeader";

NSString *headerReuseIdentifier = [NSString stringWithFormat: @"myHeader%ld", (long)section];

答案 1 :(得分:0)

没有必要检查你做的事情:

if (headerView.contentView.subviews.count!=0){
    return headerView;//do not reload 
}

但是,每次实例化UILabel都不是一个好习惯。 每个实例化都应该在if (headerView == nil) if-case内完成,并且UILabel应该是此标题或单元格的属性。

然而,您可以在将标题/单元格出列时更改text属性。