口袋优选

KBMorePicCollectionCell.h 479B

123456789101112131415161718192021
  1. //
  2. // KBMorePicCollectionCell.h
  3. // YouHuiProject
  4. //
  5. // Created by jcymac on 2018/4/24.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol YHMorePicCollectionCellDelegate <NSObject>
  10. - (void)YHMorePicCollectionCellDidSelectedItem:(NSInteger)index;
  11. @end
  12. @interface KBMorePicCollectionCell : UICollectionViewCell
  13. - (void)setModelDatas:(NSArray *)dataArr;
  14. @property (nonatomic, weak) id <YHMorePicCollectionCellDelegate> delegate;
  15. @end