ImageSelectorCollectionCell.h 745 B

12345678910111213141516171819202122232425
  1. //
  2. // ImageSelectorCollectionCell.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 17/1/20.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ImageSelectorCollectionCell : UICollectionViewCell{
  10. NSInteger indexpath;
  11. JXImageView* _yellow;
  12. }
  13. @property (nonatomic,assign,setter=setIndex:) long index;
  14. @property (nonatomic,assign,setter=setIsSelected:) BOOL isSelected;
  15. @property (nonatomic,assign,setter=setDelegate:) id delegate;
  16. @property (nonatomic,strong) JXImageView * imageView;
  17. @property (nonatomic,strong) JXImageView * selectView;
  18. @property (nonatomic, assign) SEL didImageView;
  19. @property (nonatomic, assign) SEL didSelectView;
  20. -(void)refreshCellWithImagePath:(NSString *)imagePath;
  21. @end