GameKit 问题:PeerPicker 仅在其他设备具有可见选择器时才识别设备
我正在使用 gameKit 框架。我想显示附近可用的设备列表。因此,我使用 peerPicker 控制器来识别运行该应用程序的设备。我能够识别设备并将其添加到我的 tableView 中。我面临一些问题
1)它显示也有 PeerPicker 控制器搜索的设备。我的意思是,如果我只是启动我的应用程序并且不显示peerPickerController,那么我的设备不会列在另一个应用程序上的peerPickerController 设备列表中。
2)它的行为非常缓慢。我接受连接请求后,几乎需要20秒才能响应。
3)我不能同时在多个设备上进行蓝牙会话吗?
请帮我 !!!
谢谢 !!
I an working with the gameKit framework. I wanted to show the list of devices available near by. So I am using peerPicker controller to identify the devices running the app. I am able to identify and add the devices to my tableView. I am facing some issues
1) It displays the devices which also have a peerPicker controller searching. I mean If I simply launch my app and does not present the peerPickerController then my device does not get listed in the peerPickerController's device list on another app.
2) It is behaving very slowly. After I accept the connection request , it almost takes 20 seconds to respond.
3) Can't I have the bluetooth session in multiple devices at the same time ??
Please help me !!!
Thank You !!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1) 如果您想在列表中显示设备而不显示对等点,则无需使用 GKPeerPickerController。
只需使用 GKSession 类并使用其委托作为对等列表。
你只需要将 GKSession 类的 available 属性设置为 YES,其他 GKSession 就会自动检测到。
2)它的错误,我们无法做任何与此相关的事情。
3)你能解释一下你想如何使用它吗?
1) If you want to show the device in a list without presenting the peer peer then there is no need to use GKPeerPickerController.
Just use GKSession class and use its delegates for peer lists.
you just need to set GKSession class available property to YES, it will be detected by other GKSession automatically.
2) Its bug, we cant do anything related to that.
3) Can you please explain how you want to use that?