GRKArrayDiff+UICollectionView.h 792 B

123456789101112131415161718
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2016 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Vincent L. Cone <vincent.l.cone # tuta.io>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <GRKArrayDiff/GRKArrayDiff.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface GRKArrayDiff (UICollectionView)
  14. - (void)performBatchUpdatesWithCollectionView:(UICollectionView *)collectionView section:(NSUInteger)section dataSourceUpdate:(void(^ __nullable)(void))update completion:(void (^ __nullable)(BOOL finished))completion;
  15. @end
  16. NS_ASSUME_NONNULL_END