YBIBCollectionView.h 514 B

12345678910111213141516171819202122232425
  1. //
  2. // YBIBCollectionView.h
  3. // YBImageBrowserDemo
  4. //
  5. // Created by 波儿菜 on 2019/6/6.
  6. // Copyright © 2019 波儿菜. All rights reserved.
  7. //
  8. #import "YBIBCollectionViewLayout.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YBIBCollectionView : UICollectionView
  11. @property (nonatomic, strong, readonly) YBIBCollectionViewLayout *layout;
  12. - (NSString *)reuseIdentifierForCellClass:(Class)cellClass;
  13. - (nullable UICollectionViewCell *)centerCell;
  14. - (void)scrollToPage:(NSInteger)page;
  15. @end
  16. NS_ASSUME_NONNULL_END