口袋优选

KBMorePicCell.h 428B

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