#ios #core-bluetooth #cbcentralmanager
#iOS #ядро-bluetooth #cbcentralmanager
Вопрос:
Я пытаюсь интегрировать CoreBluetooth в свое приложение. Вот мой код:
@interface Central() <CBCentralManagerDelegate>
@property (strong, nonatomic) CBPeripheral * activePeripheral;
@property (strong, nonatomic) CBCentralManager * centralManager;
@end
@implementation Central
- (id) init
{
self = [super init];
if (self)
{
NSDictionary *options = @{CBCentralManagerOptionShowPowerAlertKey: @YES};
self.centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:defaultGlobalQueue options:options];
}
return self;
}
- (void) startScanning:(NSInteger)timeout
{
self.activePeripheral = nil;
[self.centralManager scanForPeripheralsWithServices:@[[CBUUID UUIDWithString:@"A65eBB2D-3D30-4981-9DB2-1996D88118A0"]] options:nil];
}
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI
{
if (self.activePeripheral != nil)
{
return;
}
self.activePeripheral = peripheral;
[self.centralManager connectPeripheral:peripheral options:nil];
}
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
{
[self.activePeripheral discoverServices:@[[CBUUID UUIDWithString:@"A65eBB2D-3D30-4981-9DB2-1996D88118A0"]]];
}
- (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error
{
// dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"Disconnected from peripheral : %@",peripheral);
if (error)
{
NSLog(@"Error disconnecting peripheral: %@", error.localizedDescription);
//[self didErrorDelegateWithPeripheral:peripheral andError:error andCode:BLE_FAILED_TO_CONNECT];
}
}
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error
{
//Logic here
}
Я вызываю startScanning внутри viewcontroller
, и он всегда входит в (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error
обратный вызов после вызова [self.activePeripheral discoverServices:@[[CBUUID UUIDWithString:@"A65eBB2D-3D30-4981-9DB2-1996D88118A0"]]];
вот ошибка, которую я всегда вижу:
Error Domain=CBErrorDomain Code=7 "The specified device has disconnected from us." UserInfo=0x175b8810 {NSLocalizedDescription=The specified device has disconnected from us.}
Кто-нибудь знает, чего мне не хватает?
Спасибо за вашу помощь.
Ответ №1:
Я, наконец, разобрался с проблемой, нам нужно установить делегат обнаруженного периферийного устройства, прежде чем пытаться обнаружить службы
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
{
peripheral.delegate = self;
[self.activePeripheral discoverServices:@[[CBUUID UUIDWithString:@"A65eBB2D-3D30-4981-9DB2-1996D88118A0"]]];
}
Комментарии:
1. Кстати, это не связано с CoreBluetooth. Всегда подключайте обработчики событий, прежде чем делать что-либо, что требует их для обработки — это то же самое и на других языках.