UICollectionView only calling didSelectItemAtIndexPath if user double taps, will not call when user single taps

Are you sure you’re not accidentally overriding - (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath? “Select” vs. “deselect” has tripped me up in the past with Xcode’s code completion.

Leave a Comment