我想检测我的 AirPods 是否连接。我可以为任何其他蓝牙设备做到这一点,但找不到任何观察者对 AirPods 做同样的事情。有任何想法吗?tnx
问问题
377 次
1 回答
0
您可以使用 IOBluetooth 框架。有一个名为IOBluetoothDevice的类,它有一个允许您注册设备连接通知的类型方法。
IOBluetoothDevice.register(forConnectNotifications: self, selector: #selector(connectNotifications))
从这里您可以调用isConnected
您的IOBluetoothDevice
实例并检查它是否已连接。
于 2019-05-13T12:36:20.680 回答