标签:
如果button是添加到cell.contentView上面的话,
UITableViewCell *cell = button.superview.superview;
NSIndexPath *index = [myTableView indexPathForCell:cell];
备注:
一直向上找它的superView直到superView为UITableViewCell,最多向上N次。
反正现在我这是这么处理的。
此外现在自定义cell,最好把所有的元素放进cell.contentView。
标签:
原文地址:http://www.cnblogs.com/huangzs/p/4512060.html