123456789101112131415161718192021222324 |
- //
- // KWSwitchButton.h
- // westkissMob
- //
- // Created by iOS on 2022/9/23.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KWSwitchButton : UIView
- @property (nonatomic, strong) UIColor *openColor;
- @property (nonatomic, strong) UIColor *closeColor;
- @property (nonatomic, strong) UIColor *circleColor;
- @property (nonatomic, copy, nullable) void(^clickBack)(void);
- - (void)setIsOpen:(BOOL)isOpen animate:(BOOL)animate;
- @end
- NS_ASSUME_NONNULL_END
|