| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // MOLiveCenterTableView.h
- // MiMoLive
- //
- // Created by SuperC on 2023/12/5.
- //
- /** 用户在线状态 */
- typedef NS_ENUM(NSUInteger, MOLiveCenterCellType)
- {
- MOLiveCenterUserCellType,
- MOLiveCenterWishListCellType
- };
- #import <UIKit/UIKit.h>
- #import "MOLiveCenterBaseCell.h"
- #import "MOListCenterTitleCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOLiveCenterTableView : UITableView
- @property (nonatomic, assign) MOLiveCenterCellType cellType;
- /** 展示数据 */
- @property (nonatomic, strong) NSMutableArray *dataArr;
- /** 其他金豆 */
- @property (nonatomic, assign) double otherGoldenBean;
- /** 点赞金豆 */
- @property (nonatomic, assign) double likeGoldenBean;
- /** 嘉宾分成金豆 */
- @property (nonatomic, assign) double divideGoldenBean;
- @property (nonatomic, copy) void (^cellClickBlock)(MOPersonList *cellModel);
- @property (nonatomic, copy) void (^wishCellClickBlock)(void);
- @end
- NS_ASSUME_NONNULL_END
|