| 123456789101112131415161718192021222324252627282930 |
- //
- // MOLiveMsgNormalTipCell.h
- // MiMoLive
- //
- // Created by SuperC on 2024/2/17.
- //
- #define MOLiveMsgNormalTipCell_ID @"MOLiveMsgNormalTipCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOLiveMsgNormalTipCell : UITableViewCell
- @property (nonatomic, strong) UIView *bgView;
- @property (nonatomic, strong) UIImageView *bgImgView;
- @property (nonatomic, strong) UIImageView *iconImgView;
- @property (nonatomic, strong) UILabel *contentLab;
- @property (nonatomic, strong) UIImageView *rightImgView;
- @property (nonatomic, strong) MORtmEntity *cellModel;
- @end
- NS_ASSUME_NONNULL_END
|