CollectviewChooseCell.h 369 B

12345678910111213141516
  1. //
  2. // CollectviewChooseCell.h
  3. // MuTableCollectMenu
  4. //
  5. // Created by Kingson on 2021/4/25.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @interface CollectviewChooseCell : UICollectionViewCell
  9. @property(nonatomic,retain)UILabel *titleLab;
  10. @property(nonatomic,retain)UIButton *SelectIconBtn;
  11. @property (nonatomic,assign)BOOL isSelected;
  12. -(void)UpdateCellWithState:(BOOL)select;
  13. @end