MOLiveMsgFanClubTipCell.h 605 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MOLiveMsgFanClubTipCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2025/6/23.
  6. //
  7. #define MOLiveMsgFanClubTipCell_ID @"MOLiveMsgFanClubTipCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. #import "MOMsgContentTextView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MOLiveMsgFanClubTipCell : UITableViewCell
  12. @property (nonatomic, strong) UIView *bgView;
  13. @property (nonatomic, strong) MOMsgContentTextView *contentTextView;
  14. @property (nonatomic, strong) MORtmEntity *cellModel;
  15. /** cell 单击事件 */
  16. @property (nonatomic, copy) void(^cellTapBlock)(MORtmEntity *cellModel);
  17. @end
  18. NS_ASSUME_NONNULL_END