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.

1234567891011121314151617181920212223242526272829
  1. //
  2. // ELSelectView.h
  3. // Elink
  4. //
  5. // Created by iot_user on 2019/1/23.
  6. // Copyright © 2019年 iot_iMac. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ELSelectViewCell : UITableViewCell
  11. @property (nonatomic, strong) UILabel *titleLbl;
  12. @end
  13. @interface ELSelectView : UIView
  14. @property (nonatomic, copy) void (^selectRowBlock)(NSInteger row);
  15. -(instancetype)initWithTitle:(NSString *)title withSelectArray:(NSArray<NSString *> *)array;
  16. -(void)show;
  17. @end
  18. NS_ASSUME_NONNULL_END