YXMsgListTableViewCell.h 511 B

12345678910111213141516171819202122
  1. //
  2. // YXMsgListTableViewCell.h
  3. // Temperature
  4. //
  5. // Created by TC on 2025/3/24.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface YXMsgListTableViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *picImgView;
  11. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *detailLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *numLabel;
  15. @end
  16. NS_ASSUME_NONNULL_END