dynamic load
Closed this issue · 1 comments
syrakozz commented
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
betzerra commented
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:
- Make a different
UICollectionViewCell
as the last item. - Implement a
UICollectionViewDelegate
on ViewController. - Implement
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath;
and make a different action if user tap the last one. - Finally, add more cells before the last item.