我有一个collectionView,我试图使用这个功能,但尽管我使用了cellForItemAtIndexPath,numberOfItemsInSection并且它们运行良好但它不起作用:
- (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"test");
}
任何帮助,请
答案 0 :(得分:1)
试试这个:
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"test");
}
你必须仔细阅读 - 有两种非常相似的方法。一个叫didDeselect
...一个叫didSelect
...; - )