12345678910111213141516171819202122232425 |
- //
- // YXDeviceTableViewCell.h
- // Temperature
- //
- // Created by z on 2025/1/19.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YXDeviceTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *picImgView;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *detailLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *selectedView;
- @end
- NS_ASSUME_NONNULL_END
|