我在PEERMODE中使用GKSession建立与不同设备的多个连接。

[I(denoted as Z) have 3 connections with A, B and C.]

   (All with same session ID)
      <-----> A
    Z <-----> B
      <-----> C


但是我无法弄清楚如何使用特定的peerID终止特定的连接,如下所示:

      <-----> A
    Z <--x--> B    disconnect with B, but A & C remain connected
      <-----> C


我已阅读GKSession类的参考资料并在网络上进行了一些搜索,但未找到任何有用的信息,有人可以帮助我吗?

最佳答案

你试过了吗

- (void)disconnectPeerFromAllPeers:(NSString *)peerID

与peerID为B?
问候!

关于ios - 如何终止与特定peerID的连接?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10629344/

10-09 02:20