我可以在我的 iOS 应用程序中打开两个 EASession 来与我的外部配件通信吗?
Could I open two EASessions in my iOS app to communicate with my external accessory?
我可以打开两个EASession来与外部配件通信吗? 一个 EASession 用于控制命令,另一个 EASession 用于流数据。
我推荐 reading the manual for EAAccessory,因为它明确指出:
For a given accessory object, only one session at a time is allowed for a specific protocol.
所以,是的:只要协议不同,您就可以有多个会话。如果不是,是否有什么阻止您使用第二个 EAAccessory 对象..?
我可以打开两个EASession来与外部配件通信吗? 一个 EASession 用于控制命令,另一个 EASession 用于流数据。
我推荐 reading the manual for EAAccessory,因为它明确指出:
For a given accessory object, only one session at a time is allowed for a specific protocol.
所以,是的:只要协议不同,您就可以有多个会话。如果不是,是否有什么阻止您使用第二个 EAAccessory 对象..?