<error>:[CoreBluetooth] API MISUSE:取消未使用外设的连接

时间:2016-01-17 10:07:51

标签: ios objective-c core-bluetooth

我的情景:

  1. 我用sigkill() - &gt;杀了我的应用应用程序转到后台。
  2. 从BT设备发送数据并成功连接,同时调用centralManager: willRestoreState:
  3. 设备连接后,我将BT设备从应用范围和方法centralManager: didDisconnectPeripheral: error: is invoked with error code 6.
  4. 中取出
  5. 我尝试通过调用[_centralManager connectPeripheral:peripheral options:nil]重新连接外围设备,然后收到以下错误:
  6.   

    [CoreBluetooth] API MISUSE:取消未使用的连接   外围,你有没有忘记提及它?

    这个错误是什么意思?

1 个答案:

答案 0 :(得分:5)

如消息所示,您需要将CBPeripheral实例存储在一个强有力的参考位置。

通常,通过将指针存储在某处,可以强烈引用对象。例如,您可能有一个BluetoothConnectionManager保留已连接外围设备的列表:

@implementation BluetoothConnectionManager
- (instancetype)init
{
    if(self = [super init])
    {
        _knownPeripherals = [NSMutableArray array];
        dispatch_queue_t centralQueue = dispatch_queue_create("com.my.company.app", DISPATCH_QUEUE_SERIAL);
        _centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:centralQueue options:@{CBCentralManagerOptionShowPowerAlertKey : @YES}];
    }
    return self;
}

- (void)centralManager:(CBCentralManager *)central
  didConnectPeripheral:(CBPeripheral *)peripheral
{
    [_knownPeripherals addObject:peripheral];
}

- (void)centralManager:(CBCentralManager *)central
didDisconnectPeripheral:(CBPeripheral *)cbPeripheral
                 error:(NSError *)error
{
    // This probably shouldn't happen, as you'll get the 'didConnectPeripheral' callback
    // on any connected peripherals and add it there.
    if(![_knownPeripherals containsObject:cbPeripheral])
    {
        [_knownPeripherals addObject:cbPeripheral];
    }

    [_centralManager connectPeripheral:cbPeripheral options:nil];
}

@end

或者您可以修改此代码以引用单个连接的外围设备。

您还可以使用此功能写出以前的连接ID,以便在重新启动应用时尝试建立它们,如Apple Docs

中所述

最后,引用的一些链接:

搜索“强弱参考ios”将产生更多结果。如果您使用ARC,只需拥有一个属性就可以创建一个强大的参考。无论如何,将CBPeripheral实例添加到数组中也会创建一个强大的引用。