如何知道UITableView中哪一行被打开

发布于 2024-10-24 08:50:44 字数 232 浏览 6 评论 0原文

我有一个 UITableView myTable ,每一行都有 UISwitch 。

如何在 switchChanged 方法中找到更改开关的表的行号?

- (void) switchChanged:(id)sender {
    UISwitch* mySwitch = sender;
    NSLog( @"%d", mySwitch.on );
}

谢谢

I have a UITableView myTable which has UISwitch for every row.

How can I find the row number of the table for which the switch is changed in my switchChanged method?

- (void) switchChanged:(id)sender {
    UISwitch* mySwitch = sender;
    NSLog( @"%d", mySwitch.on );
}

Thank you

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

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

发布评论

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

评论(2

旧伤慢歌 2024-10-31 08:50:45

如果您只有一个部分(或者只有一个带有使用该方法的开关的部分),您可以将行号存储在开关的 tag 属性中。或者,如果您限制自己合理的节数和行数,则可以将节号存储在标签整数的高 N 位中,将行号存储在标签整数的低 M 位中(N+M < 32 以获得最佳结果)。

或者您可以从开关中使用 superview 直到找到 UITableViewCell(使用 isKindOfClass: 进行测试),然后在表格视图上使用 indexPathForCell:找到索引路径。

或者您可以子类化 UISwitch 以拥有一个属性来存储索引路径。

或者您可以使用 objc_setAssociatedObject 来将索引路径与开关关联起来。

If you have just one section (or just one section with switches using that method), you could store the row number in the switches' tag properties. Or if you limit yourself to reasonable numbers of sections and rows, you could store the section number in the high N bits and the row number in the low M bits of the tag integer (N+M < 32 for best results).

Or you could use superview from the switch until you find the UITableViewCell (test using isKindOfClass:), and then use indexPathForCell: on the table view to find the index path.

Or you could subclass UISwitch to have a property to store the index path.

Or you could use objc_setAssociatedObject to associate the index path with the switch.

于我来说 2024-10-31 08:50:44

一种建议可能是使用标签。

当您使用 cellForRowAIndexPath: 中的开关设置单元格时,您可以将开关标记设置为行值。这样你就可以再次读出标签并获取行和项目......

One suggestion could be to use the tag.

When you setup the cell with the switch in cellForRowAIndexPath: you can set the switch tag to the row value. That way you can read out the tag again and get the row and item...

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