通过 iPhone 应用程序广播数据字节
我想通过我的 iPhone 应用程序在特定的 wifi 范围内广播一些数据字节...以便该特定范围内的每个接收器都会收到该字节。我对这个概念非常陌生。
有任何示例应用程序吗?
提前致谢...
I want to broadcast some data bytes in particular wifi range through my iPhone app...so that every receiver in that particular range will receive that bytes. I am very much new to this concept.
Is there any sample app?
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个类对于在 Objective-c 中进行套接字(UDP 或 TCP)非常有趣:http://code。 google.com/p/cocoaasyncsocket/
This class is very interesting for doing socket in Objective-c, either UDP or TCP : http://code.google.com/p/cocoaasyncsocket/
只需将 UDP 数据包发送到例如地址 224.1.2.3,这是一个多播地址。我不能 100% 确定它会去哪里,但如果你禁用 3G,至少它应该会去 WiFi。
Just send UDP packets to for instance address 224.1.2.3 which is a multicast address. I am not 100% sure where it will go, but if you disable 3G, at least then it should go to WiFi.