我在Xcode 6中制作了一个非常简单的iOS应用,以试用CoreBluetooth并与我的Polar H6心率监测器进行通信。由于某种原因,未调用didDiscoverPeripheral方法。
我在StackOverflow上发现了以下类似问题,但您要么有些不同,要么没有真正为我回答:
我在viewDidLoad中的代码:
NSArray *services = @[[CBUUID UUIDWithString:HRM_HEART_RATE_SERVICE_UUID]];
CBCentralManager *centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
[centralManager scanForPeripheralsWithServices:services options:nil];
self.centralManager = centralManager;
方法
centralManagerDidUpdateState
被调用,它告诉我状态等于CBCentralManagerStatePoweredOn
。即使将
didDiscoverPeripheral
传递给nil
方法,也不会调用scanForPeripheralsWithServices
方法。在应用商店中,我已经下载了一个名为LightBlue的应用。它是一个非常简单的应用程序,可以测试使用Bluetooth 4.0 LowEnergy的任何设备。它扫描外围设备并显示有关设备及其服务的详细信息。
LightBlue应用程序确实可以看到我的HeartRate监视器,而我自己的小应用程序却看不到。
有人有任何提示或线索如何继续进行吗?
(我在iOS 8上使用Xcode 6和iPhone 6)
最佳答案
我使用的是Swift,看来蓝牙队列需要使用主队列
myCentralManager = CBCentralManager(delegate: self, queue: dispatch_get_main_queue())
在 objective-c 中
myCentralManager = [[CBCentralManager alloc]
initWithDelegate:self queue:dispatch_get_main_queue()];
关于ios - iOS-未调用CoreBluetooth didDiscoverPeripheral,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26452691/