| 12345678910111213141516171819202122232425262728 |
- //
- // MOLiveMsgFanClubTipCell.h
- // MiMoLive
- //
- // Created by SuperC on 2025/6/23.
- //
- #define MOLiveMsgFanClubTipCell_ID @"MOLiveMsgFanClubTipCell_ID" //复用id
- #import <UIKit/UIKit.h>
- #import "MOMsgContentTextView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOLiveMsgFanClubTipCell : UITableViewCell
- @property (nonatomic, strong) UIView *bgView;
- @property (nonatomic, strong) MOMsgContentTextView *contentTextView;
- @property (nonatomic, strong) MORtmEntity *cellModel;
- /** cell 单击事件 */
- @property (nonatomic, copy) void(^cellTapBlock)(MORtmEntity *cellModel);
- @end
- NS_ASSUME_NONNULL_END
|