YXMyDeviceTableViewCell.h 661 B

123456789101112131415161718192021222324252627
  1. //
  2. // YXMyDeviceTableViewCell.h
  3. // Temperature
  4. //
  5. // Created by TC on 2025/2/22.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "CircleProgressBar.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YXMyDeviceTableViewCell : UITableViewCell
  11. @property (nonatomic, copy) void(^resetClick)(UITableViewCell *);
  12. @property (weak, nonatomic) IBOutlet UIView *rateView;
  13. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *detailLabel;
  15. @property (weak, nonatomic) IBOutlet UIButton *resetBtn;
  16. @property (weak, nonatomic) CircleProgressBar *circleBar;
  17. @property (weak, nonatomic) IBOutlet UIView *lineView;
  18. @end
  19. NS_ASSUME_NONNULL_END