iOS AILinkBleSDK - 蓝牙SDK
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ELDemoButton.h 655B

1234567891011121314151617181920212223242526
  1. //
  2. // ELDemoButton.h
  3. // AILinkBleSDK_Example
  4. //
  5. // Created by LarryZhang on 2023/2/4.
  6. // Copyright © 2023 zhengzida. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. IB_DESIGNABLE
  11. @interface ELDemoButton : UIButton
  12. @property (nonatomic, assign) IBInspectable CGFloat cornerRadius;
  13. @property (nonatomic, assign) IBInspectable CGFloat borderWidth;
  14. @property (nonatomic, strong) IBInspectable UIColor *borderColor;
  15. @property (nonatomic, strong) IBInspectable UIColor *mainColor;
  16. @property (nonatomic, assign) IBInspectable BOOL disabled;
  17. @property (nonatomic, assign) IBInspectable BOOL lighted;
  18. @end
  19. NS_ASSUME_NONNULL_END