1

我想将 3 台 iOS 设备相互连接。例如,一个 iOS 设备将像一个服务器,而其他 2 个设备将像客户端一样连接到该服务器。为了使 iOS 设备作为服务器,我使用 CocoaHTTPServer,没有任何互联网连接,应该只使用 wi - fi 连接。

有什么建议吗?

4

2 回答 2

2

我建议您使用 ichat 中使用的 bonjour 协议。这有助于解决您的问题。这些链接可能对您有所帮助。

http://en.wikipedia.org/wiki/Bonjour_%28software%29

http://en.wikipedia.org/wiki/Apple_Filing_Protocol

于 2013-03-21T10:37:54.477 回答
0

好的,我解决了这个问题。我拥有:
(1)一个 wi-fi 路由器
(2)两个 iOS 设备。

创建本地 wi-fi 网络,
连接 2 设备。
通过使用这个开源库 CocoaHTTPServer,其中一个设计将是服务器。
示例:
https ://github.com/robbiehanson/CocoaHTTPServer/tree/master/Samples/iPhoneHTTPServer

在 iPhone(即服务器)中,您应该找到由 wi fi 网络提供的 ip,例如 192.168.0.101

然后uala,转到iphone浏览器(不是服务器)并输入url:192.168.0.101:9999号码

于 2013-06-04T05:02:23.670 回答