RDSCtrlModeView.h 282 B

123456789101112131415161718192021
  1. //
  2. // RDSCtrlModeView.h
  3. // Temperature
  4. //
  5. // Created by RD on 2023/1/6.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RDSCtrlModeView : UIView
  10. @property (nonatomic, copy) void(^onModeClick)(int mode);
  11. - (void)setMode:(int)mode;
  12. @end
  13. NS_ASSUME_NONNULL_END