| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // MOMyBackpackCell.h
- // MiMoLive
- //
- // Created by SuperC on 2023/12/21.
- //
- #define MOMyBackpackCell_ID @"MOMyBackpackCell_ID" //复用id
- #import <UIKit/UIKit.h>
- #import "MOShopDataModels.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOMyBackpackCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIView *bgView;
- @property (weak, nonatomic) IBOutlet UIImageView *iconImgView;
- @property (weak, nonatomic) IBOutlet UISwitch *theSwitch;
- @property (weak, nonatomic) IBOutlet UILabel *titleLab;
- @property (weak, nonatomic) IBOutlet UIButton *tipBtn;
- @property (nonatomic, strong) MOShopList *cellModel;
- @property (nonatomic, copy) void (^switchValueChange)(MOShopList *cellModel);
- @property (nonatomic, strong) MOGiftlist *giftModel;
- @property (nonatomic, copy) void (^buyShopView)(MOShopList *cellModel);
- //道具类型(1=进场条,2=头饰,3=气泡)
- @property (nonatomic, assign) NSInteger category;
- @end
- NS_ASSUME_NONNULL_END
|