123456789101112131415161718192021222324252627282930 |
- //
- // YXSceneTableViewCell.h
- // Temperature
- //
- // Created by gtjx-z on 2025/4/8.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YXSceneTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *picImgView;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *statusLabel;
- @property (weak, nonatomic) IBOutlet UIView *imgBgView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bgWidthConstraint;
- @property (weak, nonatomic) IBOutlet UIView *iconBgView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *iconBgWidthConstraint;
- @property (weak, nonatomic) IBOutlet UIImageView *iconImgView;
- @property (weak, nonatomic) IBOutlet UIButton *eventBtn;
- @property (nonatomic, copy) void(^onPowerClick)(void);
- @end
- NS_ASSUME_NONNULL_END
|