12345678910111213141516171819202122 |
- //
- // YXMsgListTableViewCell.h
- // Temperature
- //
- // Created by TC on 2025/3/24.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YXMsgListTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *picImgView;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *detailLabel;
- @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
- @property (weak, nonatomic) IBOutlet UILabel *numLabel;
- @end
- NS_ASSUME_NONNULL_END
|