如何终止与特定peerID的连接?

时间:2012-05-17 03:11:02

标签: ios gamekit gksession

我在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类的参考资料并在网上进行搜索,但没有找到任何有用的信息,有人可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

你试过吗

- (void)disconnectPeerFromAllPeers:(NSString *)peerID

peerID为B? 此致!