您可以使用外部附件框架设置当前的蓝牙配置文件吗?
EAAccessory 有一个属性,可让您指定协议字符串,例如 com.myCompanyName.MyProtocolName
。这是否意味着您可以使用外部配件框架设置当前的蓝牙配置文件?
EAAccessory has a property that lets you specify protocol strings like com.myCompanyName.MyProtocolName
. Does this mean that you can set the current Bluetooth profile using the External Accessory framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法使用外部附件框架设置当前的蓝牙配置文件。该框架仅用于与 Made for iPod 程序中的蓝牙或底座连接设备进行通信。有关更多信息,请参阅我的回答。
不幸的是,没有公开的方法可以在 iPhone 上以编程方式访问蓝牙堆栈。
You cannot set the current Bluetooth profile using the External Accessory framework. This framework is only for communicating with Bluetooth or dock-connected devices in the Made for iPod program. See my answer here for more.
Unfortunately, there is no public way to access the Bluetooth stack programmatically on the iPhone.
您无法通过
外部配件框架
设置蓝牙配置文件。protocolString
用于与 MFi 配件通信。当蓝牙 MFi 设备与 iPhone 配对并连接时,它会建立一个无线 iAP 配置文件,并且蓝牙和 iOS 应用程序之间的所有字节都使用此配置文件进行传输。You cannot set the Bluetooth profile by
External Accessory Framework
.protocolString
is for communicating with MFi accessory. When a Bluetooth MFi device is paired and connected with iPhone, it establishes aWireless iAP
profile and all bytes between the Bluetooth and iOS apps are transferred using this profile.