KWSwitchButton.h 466 B

123456789101112131415161718192021222324
  1. //
  2. // KWSwitchButton.h
  3. // westkissMob
  4. //
  5. // Created by iOS on 2022/9/23.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface KWSwitchButton : UIView
  10. @property (nonatomic, strong) UIColor *openColor;
  11. @property (nonatomic, strong) UIColor *closeColor;
  12. @property (nonatomic, strong) UIColor *circleColor;
  13. @property (nonatomic, copy, nullable) void(^clickBack)(void);
  14. - (void)setIsOpen:(BOOL)isOpen animate:(BOOL)animate;
  15. @end
  16. NS_ASSUME_NONNULL_END