didselectItemAtIndexPath不起作用-iOS

时间:2014-12-04 14:48:41

标签: ios uicollectionview

我有一个collectionView,我试图使用这个功能,但尽管我使用了cellForItemAtIndexPath,numberOfItemsInSection并且它们运行良好但它不起作用:

- (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath
{
      NSLog(@"test");
}

任何帮助,请

1 个答案:

答案 0 :(得分:1)

试试这个:

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
      NSLog(@"test");
}

你必须仔细阅读 - 有两种非常相似的方法。一个叫didDeselect ...一个叫didSelect ...; - )