UITableViewController indexPathForSelectedRow 返回错误的值
我不确定发生了什么,但我有一个包含 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你的桌子有多个部分,这可能会造成混乱(我之前就发现过这一点)。 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.