123456789101112131415161718192021 |
- //
- // YXMsgDetailTableViewCell.h
- // Temperature
- //
- // Created by TC on 2025/3/25.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YXMsgDetailTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *detailLabel;
- @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
- @property (weak, nonatomic) IBOutlet UIView *colorView;
- @end
- NS_ASSUME_NONNULL_END
|