I have created a UICollectionView and manually implemented the datasource and delegate protocols, assigned them to the datasource and delegate properties on the view and supplied a custom flow layout implementation - but I can't seem to get the
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
delegate calls to fire.
I have an example project that uses a UICollectionViewController ... but in my case, I really can't, nor do I want to create a view controller or push it on the stack. I've got the items drawing correctly. I've customized the cells. I've extended the flow layout and customized it so the grid is correct - but tapping on any of the cells fails to fire the delegate selection methods.
Just wondering if there is was something else obvious I was missing.