标签:
原由:点击cell上的按钮,无法获取button对应的cell位置
//获取按钮上层控件,也就是cell本身 AccountCell *cell= (AccountCell *)[按钮名称 superview]; //获取该cell本身的位置 NSIndexPath *indexPath=[self.collectionView indexPathForCell:cell];
获取cell上按钮事件
原文地址:http://www.cnblogs.com/Eazy/p/5070887.html