Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我了解BluetoothManager 框架是私有 API 的一部分,但我很好奇是否有人有使用它的经验。
我可以打开和关闭蓝牙,但我想获取设备列表。
调用该pairedDevices方法似乎会将我需要的所有信息写入日志,但不会返回设备数组。
pairedDevices
您可以通过注册已发现设备的通知,然后触发发现本身来获取设备列表。传入的通知对象实际上是一个 BluetoothDevice 对象,您可以使用它来提取远程设备的名称和地址。此结构中没有内置 RSSI 数据。我为 OS 5.1 编写了一个完整的示例,如果需要,请给我留言。