取消选择UITableViewCell

时间:2014-05-29 16:26:33

标签: ios objective-c uitableview

我正在从表视图中调用视图控制器。当我返回调用者视图时,我之前按下的表格单元格保持选中状态,这样在选择另一个单元格之前我无法再次选择它。

我已经添加了deselectRowAtIndexPath方法,但是它没有用。

- (void) tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];

    UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    UIViewController *ctrl = [storyboard instantiateViewControllerWithIdentifier:@"node"];
    self.navigationController.navigationBarHidden = NO;
    self.navigationController.navigationItem.hidesBackButton = NO;
    [self.navigationController pushViewController:ctrl animated:YES];
}

3 个答案:

答案 0 :(得分:1)

didDeselectRowAtIndexPath仅在您的行已取消选中后才会调用,因此您对deselectRowAtIndexPath的调用无效。只需将其放在didSelectRowAtIndexPath中,然后点按它即可取消选择:

[tableView deselectRowAtIndexPath:indexPath animated:YES];

答案 1 :(得分:1)

如果您使用UITableViewController,则有一个属性。您可以在-viewDidLoad子类的UITableViewController方法中设置它:

self.clearsSelectionOnViewWillAppear = YES;

否则你必须手动完成。只需在-viewWillAppear:

中取消选择即可
- (void)viewWillAppear:(BOOL)animated {
    [self.tableView deselectRowAtIndexPath:self.tableView.indexPathForSelectedRow];
}

此处显示的方法不是必需的。

答案 2 :(得分:0)

您在delegate method上提交错误。当您在tableView选择一行时,会调用:

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

所以你的代码应该是这个方法:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    UIViewController *ctrl = [storyboard instantiateViewControllerWithIdentifier:@"node"];
    self.navigationController.navigationBarHidden = NO;
    self.navigationController.navigationItem.hidesBackButton = NO;
    [self.navigationController pushViewController:ctrl animated:YES];

    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}

现在你也调用了deselectRowAtIndexPath

- (void) tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath;

但在您的情况下,您不需要在此方法中实施某些内容。