YXDeviceTableViewCell.h 463 B

12345678910111213141516171819202122232425
  1. //
  2. // YXDeviceTableViewCell.h
  3. // Temperature
  4. //
  5. // Created by z on 2025/1/19.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface YXDeviceTableViewCell : 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 UIImageView *selectedView;
  14. @end
  15. NS_ASSUME_NONNULL_END