我有一个包含 2 个部分的分组表视图。第 1 部分被隐藏,当您点击部分标题时,该部分打开。但是,当我想通过点击第 1 节中的单元格来打开视图时,我需要双击打开它。但在第 0 节中,我只需要 1 次点击。我基于 Apple 教程中的打开/关闭部分。
didSelectRowAtIndexPath 方法不会在单元格处注册第一次点击。
该方法看起来像这样:
-(void)tableview:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
if(indexPath.section == 0 && indexPath.row == 0)
[self.navigationController pushViewController:trainingController animated:YES];
else if(indexPath.section == 1 && indexPath.row ==0)
[self.navigationController pushViewController:newsController animated:YES];
}
这是伪代码,因此可能不是工作代码。