如何在 objc 上使用套接字?
我想在我的游戏中使用 p2p。如何获取 IP 地址并使用 objc 上的套接字? 请帮我。
I want to use p2p in my game. How can I get IP adress and use sockets on objc?
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
OS X 包含标准 BSD 套接字。在终端中输入
man socket
以获取套接字 API 文档。OS X includes standard BSD sockets. Type
man socket
in the Terminal for the socket API docs.像往常一样使用原始 BSD 套接字。但是你确定不想使用 Core Foundation 或 Foundation 提供的更好的抽象吗?
我认为您应该看看 WWDC 2010 的第 207 和 208 场会议,其中 Quinn“爱斯基摩人!”详细介绍了 iOS 上正确、安全和高效的网络。
http://developer.apple.com/videos/wwdc/2010/
Use raw BSD sockets as you have always done. But are you sure you do not want to use a better abstraction provided by Core Foundation or Foundation?
I think you should look at session 207 and 208 of WWDC 2010, where Quinn "the Eskimo!" details proper, safe and efficient networking on iOS.
http://developer.apple.com/videos/wwdc/2010/