123456789101112131415161718192021222324252627 |
- //
- // YXMyDeviceTableViewCell.h
- // Temperature
- //
- // Created by TC on 2025/2/22.
- //
- #import <UIKit/UIKit.h>
- #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
|