// // YXMyDeviceTableViewCell.h // Temperature // // Created by TC on 2025/2/22. // #import #import "CircleProgressBar.h" NS_ASSUME_NONNULL_BEGIN @interface YXMyDeviceTableViewCell : UITableViewCell @property (nonatomic, copy) void(^resetClick)(UITableViewCell *); @property (weak, nonatomic) IBOutlet UIView *rateView; @property (weak, nonatomic) IBOutlet UILabel *titleLabel; @property (weak, nonatomic) IBOutlet UILabel *detailLabel; @property (weak, nonatomic) IBOutlet UIButton *resetBtn; @property (weak, nonatomic) CircleProgressBar *circleBar; @property (weak, nonatomic) IBOutlet UIView *lineView; @end NS_ASSUME_NONNULL_END