我有一个自定义的 CollectionViewCell 类,然后我在 CollectionView 中生成了这些类。然后,当触摸 ViewCells 时,我还添加了一个模态序列。当模态 segue 被激活时,我将如何获取按下的单元格的 id(或索引路径)。
我在这里看到有人建议我将方法添加到 ViewCell.m 文件中
-(void)collectionView: (UICollectionView*)collectionView didSelectItemAtIndexPath: (NSIndexPath*)indexPath{
//get indexpath variable in here
}
但是这个方法似乎没有被调用。当 CollectionViewCell 具有模态 segue 以获取索引路径时,任何人都可以帮助我调用什么方法。
谢谢,