MOLiveMsgNormalTipCell.h 621 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MOLiveMsgNormalTipCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/2/17.
  6. //
  7. #define MOLiveMsgNormalTipCell_ID @"MOLiveMsgNormalTipCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOLiveMsgNormalTipCell : UITableViewCell
  11. @property (nonatomic, strong) UIView *bgView;
  12. @property (nonatomic, strong) UIImageView *bgImgView;
  13. @property (nonatomic, strong) UIImageView *iconImgView;
  14. @property (nonatomic, strong) UILabel *contentLab;
  15. @property (nonatomic, strong) UIImageView *rightImgView;
  16. @property (nonatomic, strong) MORtmEntity *cellModel;
  17. @end
  18. NS_ASSUME_NONNULL_END