我是想到有另外一个作法,
※ 引述《lolicontrol (self)》之铭言:
: 我做法跟你类似
: UICollectionView *collection = (UICollectionView*) self.superview;
: [collection indexPathForCell:self].row
: 最后用 delegate 回传值
就跟这个差不多,
全部作法是,将继承一个 cell,将 button 的 target 与 action 指到 cell 自己本身,
在 button 触发的 method 中将 cell 自己用 delegate 传回给上一层,
这时候就可以用 cell.superview 来找 cell 的位置,
或是担心 collectionView 的内容有问题的话也可以使用全域变量来做到,
这样子就能依照不同习惯来解决问题了。