12345678910111213141516171819202122232425262728 |
- //
- // SearchDeviceViewController.h
- // Unity-iPhone
- //
- // Created by leon on 2021/2/4.
- //
- #import <UIKit/UIKit.h>
- #import "MYFactoryManager.h"
- @interface SearchDeviceViewController : UIViewController
- @property (strong, nonatomic)NSMutableArray * deviceArray; /**< 蓝牙设备个数 */
- @property (strong,nonatomic)CBPeripheral * currentPeripheral;
- @property (copy,nonatomic)void(^connectDeviceBlock)(CBPeripheral * peripheral);
- //
- @property (copy,nonatomic)void(^closeBlock)();
- //
- -(void)reloadData;
- -(void)getInteraction:(int)interaction;
- @end
|