gpt4 book ai didi

ios - 如何确定带有已点击开关的单元格的 indexPath?

转载 作者:行者123 更新时间:2023-11-28 20:02:02 25 4
gpt4 key购买 nike

我有一个带有原型(prototype)单元格的 UITableView,上面有一个 UISwitch。当用户点击任何特定单元格上的开关时,我需要确定我的数据源中的哪个对象已切换开关。

这是我的切换方法:

- (IBAction)completeSwitchTapped:(id)sender {
UITableViewCell *cell = (UITableViewCell *)[sender superview];
NSIndexPath *indexPath = [self.itineraryTableView indexPathForCell:cell];


NSLog(@"cell row is: %d in section: %d", indexPath.row, indexPath.section);
}

但是无论选择了哪一行或哪一节,这总是返回第 0 节中的第 0 行。

如何正确返回包含开关的正确单元格?显然,[sender superview] 没有工作,我对如何引用单元格一筹莫展。

谢谢!

最佳答案

尝试这样的事情:

UIView *superview = sender.superview;
while (![superview isKindOfClass:[UITableViewCell class]] && superview.superview != nil) {
superview = superview.superview;
}
NSIndexPath *indexPath = [self.itineraryTableView indexPathForCell:superview];

关于ios - 如何确定带有已点击开关的单元格的 indexPath?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23575513/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com