UITableView 失去选择状态 iOS

发布于 2024-12-06 02:25:07 字数 145 浏览 1 评论 0原文

我有一个 UITableView 并拥有它,因此当您按下第一个单元格时,它会将您带到一个新视图(新 xib)。当您按第二个单元格时,您将转到另一个视图,依此类推。当您转到任何新视图并返回表格视图时,您刚刚按下的单元格仍处于选中状态(突出显示为蓝色)。解决这个问题的代码是什么?

I have a UITableView and have it so when you press the first cell, it takes you to a new view (new xib). When you press the second cell, you go to another view and so on. When you go to any of those new views, and come back to the tableview view, the cell you just pressed is still selected (its highlighted blue). What is the code to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

白况 2024-12-13 02:25:07

在您的 tableView 数据源委托方法中:

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

In your tableView datasource delegate method:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}
一杯敬自由 2024-12-13 02:25:07

在您希望从中删除单元格的 tableView 的 viewWillAppear 内部:

UITableViewCell *cell = (UITableViewCell *)[myTableView cellForRowAtIndexPath:lastSelected];
[cell setSelected:NO];

其中,lastSelected 可以是 NSIndexPath 类型的全局变量,存储上述 UITableView 的 didSelectRowAtIndexPath 中的 indexPath

Inside viewWillAppear of your tableView whose cell you wish to remove selection from:

UITableViewCell *cell = (UITableViewCell *)[myTableView cellForRowAtIndexPath:lastSelected];
[cell setSelected:NO];

Where lastSelected can be a global var of type NSIndexPath storing indexPath from the didSelectRowAtIndexPath of the above UITableView

泪冰清 2024-12-13 02:25:07

这很简单..

在推送新视图的相同方法中,您应该添加以下行:

[tableView deselectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated];

It's quite easy..

In the same method that you push the new view you should add the line:

[tableView deselectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文