JLFacePackgeViewCell.h 515 B

1234567891011121314151617181920
  1. //
  2. // JLFacePackgeViewCell.h
  3. // shiku_im
  4. //
  5. // Created by JayLuo on 2019/12/10.
  6. // Copyright © 2019 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JLFacePackgeModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface JLFacePackgeViewCell : UICollectionViewCell
  12. @property(nonatomic, strong) JLFacePackgeModel *model;
  13. @property(nonatomic, assign) BOOL isSelectedImageHidden;
  14. @property (nonatomic, copy) void (^JLFacePackgeViewCellCallBack)(NSString *idString, BOOL isSelected);
  15. @end
  16. NS_ASSUME_NONNULL_END