| 123456789101112131415161718192021222324252627282930 |
- //
- // MOSystemNormalCell.h
- // TUIChat
- //
- // Created by SuperC on 2025/5/16.
- //z
- #import <TIMCommon/TIMCommonModel.h>
- #import "MOSystemNormalCellData.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOSystemNormalCell : TUICommonTableViewCell
- @property (nonatomic, strong) UIView *bgView;
- @property (nonatomic, strong) UIImageView *iconImgView;
- @property (nonatomic, strong) UILabel *groupLabel;
- @property (nonatomic, strong) UILabel *titleLab;
- @property (nonatomic, strong) UILabel *timeLab;
- @property (nonatomic, strong) UIImageView *pictureView;
- @property (nonatomic, strong) UILabel *contentLab;
- @property (nonatomic, strong) UIView *detailsView;
- @property (nonatomic, strong) MOSystemNormalCellData *dataModel;
- - (void)fillWithData:(MOSystemNormalCellData *)data;
- @end
- NS_ASSUME_NONNULL_END
|