在cellForRow中使用selectRowAtIndexPath的UITableView会导致双重突出显示

时间:2012-11-07 16:15:57

标签: iphone ios ipad uitableview

背景:我正在尝试实现可以​​折叠和展开的分段表视图。折叠时,表格将记住所选内容并在展开时保留所选状态。

问题: a部分已展开,功能与此类似。选择的细胞就像它应该的那样。然而,同一地方但下一部分的单元格似乎也被突出显示。

示例:我有两个部分: A B 。在每个部分中,我有3个单元格: a b c 。我展开了两个部分,所以所有单元格都显示在屏幕上,没有选择任何内容。然后我点击( A a )。单元格( A a )突出显示,一切正常。我折叠部分 A ,然后展开 A 部分。 ( A a )会突出显示。但是,( B a )也会突出显示。可以使用( A b )和( A c )重复此操作。它将分别点亮( B b )和( B c )。

项目:< 已移除>

代码:

viewController.m对此有详细的解决方法。

@interface ViewController ()

@end

@implementation ViewController{
    UITableView * _tableView;

    BOOL aOpen;
    BOOL bOpen;
    BOOL cOpen;

    NSIndexPath *selectedIndexPath;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    _tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];
    _tableView.delegate = self;
    _tableView.dataSource = self;
    _tableView.allowsMultipleSelection = NO;
    [self.view addSubview:_tableView];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark - Table View stuff
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 3;
}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
    switch (section) {
        case 0:
            return [[TableViewHeader alloc]initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 40) title:@"Section A" section:section isOpen:aOpen delegate:self];
            break;
        case 1:
            return [[TableViewHeader alloc]initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 40) title:@"Section B" section:section isOpen:bOpen delegate:self];
            break;
        case 2:
            return [[TableViewHeader alloc]initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 40) title:@"Section C" section:section isOpen:cOpen delegate:self];
            break;
        default:
            return Nil;
            break;
    }
}

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    switch (section) {
        case 0:
            return aOpen? 3:0;
            break;
        case 1:
            return bOpen? 4:0;
            break;
        case 2:
            return cOpen? 5:0;
            break;
        default:
            return 0;
            break;
    }

}

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
    if (!cell) {
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
        cell.contentView.backgroundColor = [UIColor grayColor];
        cell.contentView.alpha = .4;
    }

    if ([selectedIndexPath isEqual:indexPath]) {//if it was already selected
        [tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
    }
    return cell;

}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 74;
}

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Return NO if you do not want the specified item to be editable.
    return YES;

}

//for high visibility purpose
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    if (section == 2) {
        UIView *view = [[UIView alloc] init];
        return view;
    }

    return nil;
}

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
    if (section == 2) {
        return 1;
    }
    return 0;
}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

    selectedIndexPath = indexPath;
    [tableView reloadData];
}

#pragma mark - header delegate handler
- (void) headerTappedAtSection: (int) section {
    BOOL openAction = false;
    int numberOfRow;
    switch (section) {
        case 0:
            aOpen = !aOpen;
            openAction = aOpen;
            numberOfRow = 3;
            break;
        case 1:
            bOpen = !bOpen;
            openAction = bOpen;
            numberOfRow = 4;
            break;
        case 2:
            cOpen = !cOpen;
            openAction = cOpen;
            numberOfRow = 5;
            break;
        default:
            break;
    }
    [_tableView reloadSections: [NSIndexSet indexSetWithIndex:section] withRowAnimation:UITableViewRowAnimationAutomatic];
    if (openAction && numberOfRow) {
        [_tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:section] atScrollPosition:UITableViewScrollPositionTop animated:YES];
    }
}
@end

3 个答案:

答案 0 :(得分:2)

我建议你做以下事情:

从tableView中删除:cellForRowAtIndexPath

if ([selectedIndexPath isEqual:indexPath]) {//if it was already selected
     [tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
}

在reloadSection之后添加内部头部委托处理函数(可能在if(openAction&& numberOfRow){})

     [_tableView selectRowAtIndexPath:selectedIndexPath animated:NO scrollPosition:UITableViewScrollPositionNone];

这将确保在重新加载该部分后选择单元格。由于selectedCellIndex已保存,您应该可以使用它来选择单元格。

答案 1 :(得分:0)

您的表格视图是否已将allowsMultipleSelection设置为YES?如果是这样,您需要将其设置为NO,以便表格视图替换该部分,而不是在您拨打selectRowAtIndexPath:animated:scrollPosition:时添加该部分。

答案 2 :(得分:0)

尝试改变

[_tableView reloadSections: [NSIndexSet indexSetWithIndex:section] withRowAnimation:UITableViewRowAnimationAutomatic];

简单..

 [_tableView reloadData];