我的情景:
sigkill()
- >杀了我的应用应用程序转到后台。centralManager: willRestoreState:
。centralManager: didDisconnectPeripheral: error: is invoked with error code 6.
[_centralManager connectPeripheral:peripheral options:nil]
重新连接外围设备,然后收到以下错误:[CoreBluetooth] API MISUSE:取消未使用的连接 外围,你有没有忘记提及它?
这个错误是什么意思?
答案 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实例添加到数组中也会创建一个强大的引用。