我创建了一个带有嵌入式分段控件的自定义 UItableviewcell,当单击分段控件时,我有一个需要行索引路径的方法。使用 iOS7 以下运行良好,我获得了索引路径,然后可以更新自定义单元格中的其他值。
NSIndexPath *indexPath = [self.tableView indexPathForCell:(UITableViewCell *)[[[sender superview] superview] superview]];
不幸的是,当我使用 iOS6 进行测试时,indexPath 被设置为 NULL,现在这对 iOS6 和 iOS7 的工作方式有什么不同吗?