I have a collection view, the datasource delegate works well, but UICollectionViewDelegate
:
-(void)collectionView:(UICollectionView *)collection
I had a similar issue with PSUICollectionView (this works on iOS5 too) and I fixed it by putting a button on my CollectionViewCell and setting the target of that button Also add tag's to know which button is pressed.
Looks like you've added TapGestureRecognizer somewhere and it prevents selecton of cell. Check them, that should be the problem.