连接到 iOS 的蓝牙外围设备无法在后台运行

Bluetooth peripheral connected to iOS doesn't work in the background

我在使用后台 iOS 应用程序的蓝牙外围设备时遇到问题。我需要应用程序实时响应所有蓝牙通知。我已经关注 Apple's CoreBluetooth background process guide,它在我的应用程序后台工作的时间大约为 10%,但在其他 90% 的时间里,事件排队并每 10 分钟分批发送到我的应用程序。

我只需要在蓝牙事件发生后通过 wifi 快速发出本地子网网络请求,所以它在 10 秒内完成 iOS 让应用程序在后台运行。

关于 CoreBluetooth 设置,我完全按照指南操作,它偶尔会在后台运行。但它也会批量通知并每十分钟重新启动我的应用程序,这让我认为它配置正确。

我可以确认该应用程序没有被终止。我可以保持调试器连接,它会继续 运行。事实上,调试器显示通知排队并且应用程序每十分钟进入一次前台。在我使用该应用程序后,它确实可以工作几分钟。但它不可避免地得到充分的背景。

我希望应用程序在收到蓝牙通知后立即被唤醒。在 iOS 设置 > 蓝牙屏幕中检查已连接的设备列表会显示已连接的外围设备。很明显 iOS 正在捕获通知。但它很少唤醒应用程序发送通知。


2016 年 8 月 10 日更新:

所以问题不在设备本身。它保持连接状态,甚至 iOS 的“设置”应用程序也显示设备仍处于连接状态。我意识到我在 applicationWillResignActive 上设置了 beginBackgroundTaskWithExpirationHandler 运行ning,这给了我伪背景 activity。当我将其注释掉时,该应用程序不再根据我设备的蓝牙通知取消挂起。

所有蓝牙通知都已排队,并在手动重新启动应用程序时立即触发。当应用程序处于后台时,调试应用程序不显示 activity。所以现在看起来我还没有配置应用程序以在后台正确使用蓝牙。

所以我的直觉是在遵循 CoreBluetooth 后台文档时配置错误。但是只有几个步骤,我已经实现了每个步骤。我希望 launchOptions?[UIApplicationLaunchOptionsBluetoothCentralsKey] 被发送到 application(_:didFinishLaunchingWithOptions:),但从未发送过。 centralManager(_:willRestoreState:) 永远不会被调用。

我启用了 "Uses Bluetooth LE accessories"。

我正在使用 CBCentralManagerOptionRestoreIdentifierKey:

manager = CBCentralManager(delegate: self, queue: nil, options: 
                           [CBCentralManagerOptionRestoreIdentifierKey: "TTcentralManageRestoreIdentifier",
                            CBConnectPeripheralOptionNotifyOnDisconnectionKey: NSNumber(bool: true),
                            CBConnectPeripheralOptionNotifyOnConnectionKey: NSNumber(bool: true),
                            CBConnectPeripheralOptionNotifyOnNotificationKey: NSNumber(bool: true)])

我正在订阅特征通知:

func peripheral(peripheral: CBPeripheral, didDiscoverCharacteristicsForService service: CBService, error: NSError?) {        
    if service.UUID.isEqual(CBUUID(string: DEVICE_V2_SERVICE_BUTTON_UUID)) {
        for characteristic: CBCharacteristic in service.characteristics! {
            if characteristic.UUID.isEqual(CBUUID(string: DEVICE_V2_CHARACTERISTIC_BUTTON_STATUS_UUID)) {
                peripheral.setNotifyValue(true, forCharacteristic: characteristic)
                let device = foundDevices.deviceForPeripheral(peripheral)
                device?.buttonStatusChar = characteristic
            } else if characteristic.UUID.isEqual(CBUUID(string: DEVICE_V2_CHARACTERISTIC_NICKNAME_UUID)) {
                peripheral.readValueForCharacteristic(characteristic)
            }
        }
    }
    ...
}

UIApplicationLaunchOptionsBluetoothCentralsKey 从未被调用。

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    ...
    let centralManagerIdentifiers = launchOptions?[UIApplicationLaunchOptionsBluetoothCentralsKey]
    if centralManagerIdentifiers != nil {
        print(" ---> centralManagerIdentifiers: \(centralManagerIdentifiers)")
    }
    ...
}

最后,centralManager(_:willRestoreState:) 永远不会被调用:

func centralManager(central: CBCentralManager, willRestoreState dict: [String : AnyObject]) {
    manager = central
    let peripherals = dict[CBCentralManagerRestoredStatePeripheralsKey] as! [CBPeripheral]
    print(" ---> Restoring state: \(peripherals)")
    ...
}

应该可以。这个对我有用。以下这些你做过吗?

  1. 检查 "Uses Bluetooth LE accessories" 后台模式选项。
  2. 创建管理器时添加"CBCentralManagerOptionRestoreIdentifierKey"。
  3. 订阅特征通知使用:setNotifyValue:forCharacteristic:.

如果不是,那就有问题了。也许尝试在专用调度队列上初始化管理器,以确保当前队列由于某种原因被阻塞。

如果您显示一些代码,那么我可能会提供更好的帮助。正如我所说,我知道它应该有效。

/A

想通了。让我们一起来找bug...

class AppDelegate: UIResponder, UIApplicationDelegate, CLLocationManagerDelegate {

    var window: UIWindow?
    var bluetoothManager = TTBluetoothManager()

    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
        ...
        return true
    }
    ...   
}

看到 var bluetoothManager = TTBluetoothManager() 行了吗?它应该是 var bluetoothManager: TTBluetoothManager! 并且 bluetoothManager = TTBluetoothManager() 应该在 application(_:didFinishLaunchingWithOptions:)

成功了,现在我的蓝牙设备在后台运行。