MOLiveMsgSystemTipCell.h 502 B

12345678910111213141516171819202122232425
  1. //
  2. // MOLiveMsgSystemTipCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/2/17.
  6. //
  7. #define MOLiveMsgSystemTipCell_ID @"MOLiveMsgSystemTipCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. #import "MOMsgContentTextView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MOLiveMsgSystemTipCell : UITableViewCell
  12. @property (nonatomic, strong) UIView *bgView;
  13. @property (nonatomic, strong) MOMsgContentTextView *contentTextView;
  14. @property (nonatomic, strong) MORtmEntity *cellModel;
  15. @end
  16. NS_ASSUME_NONNULL_END