MOSystemNormalCell.h 795 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MOSystemNormalCell.h
  3. // TUIChat
  4. //
  5. // Created by SuperC on 2025/5/16.
  6. //z
  7. #import <TIMCommon/TIMCommonModel.h>
  8. #import "MOSystemNormalCellData.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOSystemNormalCell : TUICommonTableViewCell
  11. @property (nonatomic, strong) UIView *bgView;
  12. @property (nonatomic, strong) UIImageView *iconImgView;
  13. @property (nonatomic, strong) UILabel *groupLabel;
  14. @property (nonatomic, strong) UILabel *titleLab;
  15. @property (nonatomic, strong) UILabel *timeLab;
  16. @property (nonatomic, strong) UIImageView *pictureView;
  17. @property (nonatomic, strong) UILabel *contentLab;
  18. @property (nonatomic, strong) UIView *detailsView;
  19. @property (nonatomic, strong) MOSystemNormalCellData *dataModel;
  20. - (void)fillWithData:(MOSystemNormalCellData *)data;
  21. @end
  22. NS_ASSUME_NONNULL_END