我在 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 的应用。它是一个非常简单的应用程序,可以测试任何使用蓝牙 4.0 LowEnergy 的设备。它扫描外围设备并显示有关设备及其服务的详细信息。
LightBlue 应用程序确实可以看到我的心率监测器,而我自己的小应用程序没有..
有没有人有任何提示或线索如何推进这个?
(我在 iOS 8 中使用 Xcode 6 和 iPhone 6)
Best Answer-推荐答案 strong>
我正在使用 Swift,看起来蓝牙队列需要使用主队列
myCentralManager = CBCentralManager(delegate: self, queue: dispatch_get_main_queue())
这里是 objective-c
myCentralManager = [[CBCentralManager alloc]
initWithDelegate:self queue:dispatch_get_main_queue()];
关于iOS - CoreBluetooth didDiscoverPeripheral 未被调用,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26452691/
|