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.
是否可以使用 CoreBluetooth 或 EAAccessoryManager 知道 iPhone 是否与汽车中的免提系统配对?如果没有,还有其他方法吗?
如果 iPhone 将汽车视为配件,您可以通过以下方式获取连接的配件:
[[EAAccessoryManager sharedAccessoryManager] connectedAccessories];
这将返回一个对象数组,EAAccessory然后您可以查询这些对象以获取某些信息,例如名称:accessory.name。
EAAccessory
accessory.name
我不确定这是否适用于自己从未尝试过的汽车(我已将其与其他配件一起使用),因此我建议您创建一个测试应用程序,将连接的配件按需记录到屏幕上并进行测试它自己。
这是EAAccessoryManager和EAAccessory的文档。