ios – CoreBluetooth:从应用程序断开外围设备连接

我的应用程序与外围设备的蓝牙通信有关.从发现到连接,每个功能都正常工作.虽然从应用程序断开外围设备,我已经编写了这样的代码

-(void) disconnect
 {
 if (_selectedPeripheral != nil &&
    _selectedPeripheral.state != CBperipheralstatedisconnected)
  {
    NSLog(@"Peripheral disconnecting");
    [_centralManager cancelPeripheralConnection:_selectedPeripheral];
    _selectedPeripheral = nil;
  }
 }

当我单击按钮时,上面的方法调用和应用程序显示外围设备已断开连接,当我从应用程序中出来并查看设置/蓝牙/ .Peripheral正在显示已连接.如何停止连接外围设备级别,即在设置.请帮我解决问题.

解决方法

您无法保证系统级别与外围设备断开连接.

这是直接来自CBCentralManager文档的链接

cancelPeripheralConnection:

discussion

This method is nonblocking,and any CBPeripheral class
commands that are still pending to peripheral may or may not complete.
Because other apps may still have a connection to the peripheral,
canceling a local connection does not guarantee that the underlying
physical link is immediately disconnected. From the app’s perspective,
however,the peripheral is considered disconnected,and the central
manager object calls the centralManager:diddisconnectPeripheral:error:
method of its delegate object.

根据我的经验,如果您是使用外围设备的唯一应用程序,物理链接会很快断开连接,但如果您可能不像Apple明确指出的那样,其他应用程序可能会维持持久连接,这会导致物理链接不能尽管它已经向你说明它已经断开了.

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...