betzerra/EBCardCollectionViewLayout

dynamic load

Closed this issue · 1 comments

the project is very good,
but could you please add a dynamic load ,
like a load more feature when you swipe to the right
it will be great

I think that is out of scope because all that work would be outside the UICollectionViewFlow class.

To accomplish that I would do the following:

  1. Make a different UICollectionViewCell as the last item.
  2. Implement a UICollectionViewDelegate on ViewController.
  3. Implement - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath; and make a different action if user tap the last one.
  4. Finally, add more cells before the last item.