1234567891011121314151617181920212223 |
- //
- // ELDemoScanVC.h
- // AILinkBleSDK_Example
- //
- // Created by LarryZhang on 2022/12/12.
- // Copyright © 2022 zhengzida. All rights reserved.
- //
-
- #import <UIKit/UIKit.h>
-
- NS_ASSUME_NONNULL_BEGIN
-
- @class ELAILinkPeripheral;
-
- @interface ELDemoScanVC : UIViewController
-
- @property (nonatomic, copy) NSArray<NSNumber *> *cids;
-
- @property (nonatomic, copy) void (^selectedBlock)(ELAILinkPeripheral *per);
-
- @end
-
- NS_ASSUME_NONNULL_END
|