1234567891011121314151617181920 |
- //
- // JLFacePackgeViewCell.h
- // shiku_im
- //
- // Created by JayLuo on 2019/12/10.
- // Copyright © 2019 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "JLFacePackgeModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface JLFacePackgeViewCell : UICollectionViewCell
- @property(nonatomic, strong) JLFacePackgeModel *model;
- @property(nonatomic, assign) BOOL isSelectedImageHidden;
- @property (nonatomic, copy) void (^JLFacePackgeViewCellCallBack)(NSString *idString, BOOL isSelected);
- @end
- NS_ASSUME_NONNULL_END
|