SearchDeviceViewController.h 530 B

12345678910111213141516171819202122232425
  1. //
  2. // SearchDeviceViewController.h
  3. // Unity-iPhone
  4. //
  5. // Created by duowan123 on 2021/2/4.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import <CoreBluetooth/CoreBluetooth.h>
  9. @interface SearchDeviceViewController : UIViewController
  10. @property (strong, nonatomic)UITableView *tableView;
  11. @property (strong, nonatomic)NSMutableArray * deviceArray; /**< 蓝牙设备个数 */
  12. @property (copy,nonatomic)void(^connectDeviceBlock)(CBPeripheral * peripheral);
  13. @property (nonatomic, copy)void(^searchDeviceTask)();
  14. -(void)hideAnimation;
  15. @end