YXSceneTableViewCell.h 844 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // YXSceneTableViewCell.h
  3. // Temperature
  4. //
  5. // Created by gtjx-z on 2025/4/8.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface YXSceneTableViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *picImgView;
  11. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *statusLabel;
  13. @property (weak, nonatomic) IBOutlet UIView *imgBgView;
  14. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bgWidthConstraint;
  15. @property (weak, nonatomic) IBOutlet UIView *iconBgView;
  16. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *iconBgWidthConstraint;
  17. @property (weak, nonatomic) IBOutlet UIImageView *iconImgView;
  18. @property (weak, nonatomic) IBOutlet UIButton *eventBtn;
  19. @property (nonatomic, copy) void(^onPowerClick)(void);
  20. @end
  21. NS_ASSUME_NONNULL_END