gpt4 book ai didi

ios - 必须在 uitableviewcell 中双击才能打开 View

转载 作者:行者123 更新时间:2023-12-01 16:57:36 28 4
gpt4 key购买 nike

我有一个包含 2 个部分的分组 TableView 。第 1 部分被隐藏,当您点击部分标题时,该部分打开。但是,当我想通过点击第 1 节中的单元格来打开 View 时,我需要双击打开它。但在第 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];
}

这是伪代码,因此可能不是工作代码。

最佳答案

你的问题不清楚。
如果“didSelectRowAtIndexPath 方法不注册单元格的第一次点击”未注册
继承协议(protocol)并设置 yourTableview.delegate=self;

关于ios - 必须在 uitableviewcell 中双击才能打开 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10347713/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com