UITableViewController indexPathForSelectedRow 返回错误的值

发布于 2024-11-25 12:20:35 字数 276 浏览 3 评论 0原文

我不确定发生了什么,但我有一个包含 3 个项目的列表,并且我选择第 1 行。

我使用的视图控制器是 UITableViewController,并且有一个属性 tableView,我在 didSelectRowAtIndexPath 期间访问 indexPathForSelectedRow。

由于某种原因,这个值有时不正确......

什么可能导致这个?

didSelectRowAtIndexPath 上的 UITableView * 参数也称为 tableView。

I'm not sure what is going on but I have a list that has 3 items and I am selecting row 1.

I am using a viewcontroller that is a UITableViewController and that has a property tableView where I am accessing the indexPathForSelectedRow during the didSelectRowAtIndexPath.

For some reason this value is incorrect sometimes...

What could cause this?

The UITableView * param on didSelectRowAtIndexPath is also called tableView.

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

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

发布评论

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

评论(1

骄傲 2024-12-02 12:20:35

如果你的桌子有多个部分,这可能会造成混乱(我之前就发现过这一点)。 indexpath.row 将返回表的该部分中的行号,而不是整个表的行号。如果这不是您所期望的,那么它就会显得错误。

If your table has more than one section that can confuse things (it's caught me before). indexpath.row will return the row number in the section of the table, not the row number of the overall table. If that's not what you're expecting it'll appear wrong.

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