如何知道UITableView中哪一行被打开
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只有一个部分(或者只有一个带有使用该方法的开关的部分),您可以将行号存储在开关的
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 usingisKindOfClass:
), and then useindexPathForCell:
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.一种建议可能是使用标签。
当您使用
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...