iOS AILinkBleSDK - 蓝牙SDK
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // ELInputAlertView.h
  3. // 自定义tabbar
  4. //
  5. // Created by iot_user on 2019/1/19.
  6. // Copyright © 2019年 IOT. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ELInputAlertView : UIView
  11. @property (nonatomic, strong) UIColor *topBtnBackColor;
  12. //自动隐藏
  13. @property (nonatomic, assign) BOOL leftAutoHide;//default:YES
  14. @property (nonatomic, assign) BOOL rightAutoHide;//default:NO
  15. @property (nonatomic, assign) BOOL first;//
  16. //
  17. @property (nonatomic, copy) void(^leftBlock)(NSString * text);
  18. @property (nonatomic, copy) void(^rightBlock)(NSString * text);
  19. @property (nonatomic, copy) BOOL(^leftHideBlock)(NSString * text, UIView *view);
  20. @property (nonatomic, copy) BOOL(^rightHideBlock)(NSString * text, UIView *view);
  21. -(instancetype)initWithTittle:(NSString *)title withText:(NSString *)text withMessage:(NSString *)placeholder withLeftButton:(NSString *)leftTitle withRightButton:(NSString *)rightTitle;
  22. -(void)show;
  23. @end
  24. NS_ASSUME_NONNULL_END