HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 如何通过单击单元格的子视图获取UITableViewCell的indexPath – 获取不兼容的指针类型警告大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在向contentView添加一个开关,而contentView属于该单元格.
我正在尝试获取触发开关的单元格的行号.

这是代码

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowATindexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MainCell"];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reusEIDentifier:@"MainCell"];
    }

    UISwitch *theSwitch = [[UISwitch alloc] initWithFrame:CGRectZero];
    [cell addSubview:theSwitch];
    cell.accessoryView = theSwitch;
    [theSwitch addTarget:self action:@SELEctor(switchChanged:) forControlEvents:UIControlEventValueChanged];

    return cell;
}

- (void) switchChanged:(UISwitch *)sender {
    UITableViewCell *theParentCell = [[sender superview] superview]; // Throwing Warning here 
    NSIndexPath *indexPathOfSwitch = [mainTableView indexPathForCell:theParentCell];
    NSLog(@"the index path of the switch: %ld",(long)indexPathOfSwitch.row);
}

这是警告信息:

发件人应该是什么而不是superview?

解决方法

如果我理解正确,您正在尝试获取切换父单元格索引.

-(NSIndexPath *)indexPathWithSubview:(UIView *)subview {
    while (![subview isKindOfClass:[UITableViewCell self]] && subview) {
        subview = subview.superview;
    }
    return [self.myTable indexPathForCell:(UITableViewCell *)subview];
}

- (void) switchChanged:(UISwitch *)sender {
    NSIndexPath *apath = [self indexPathWithSubview:(UISwitch *)sender];
}

大佬总结

以上是大佬教程为你收集整理的ios – 如何通过单击单元格的子视图获取UITableViewCell的indexPath – 获取不兼容的指针类型警告全部内容,希望文章能够帮你解决ios – 如何通过单击单元格的子视图获取UITableViewCell的indexPath – 获取不兼容的指针类型警告所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。