iPhone编程[TCP APP] +视窗
我知道类似的问题已经被问过一段时间了,但找不到任何可以解决我的“问题”的东西,
只是一个快速而肮脏的问题:
是否有一个 SDK,我可以在其中为 Windows 的 iPhone 编写 TCP(发送/接收)工具?
有一些文章告诉我们可以与 html5 进行 TCP 对话,
如果 html5 是一个不错的选择,我需要“开始”iPhone 编程。
在口水战开始之前:我通常会使用 AutoIT 为我的 Windows 工具进行大量编码。
i know that similar question are already asked some time but cant find anything that maches my "problem"
just a quick and dirty:
is there a sdk where i can programm a TCP (sending/recieveing) tool for iphone with windows?
there are some article that telling it is possible to talk tcp with html5
If html5 is a good choice for this what i need to "start" programming for iphone.
before the flame wars start: im usually coding heavly with AutoIT for my Windows tools.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 iOS 是基于 UNIX 构建的,因此您可以使用任何使用 TCP 套接字的 C 代码或库。您找到的任何使用 C 和套接字的示例都适用。您还可以使用 Apple 的
CFSocket
库进行更高级别的访问。TCP 套接字是 TCP 套接字,如果位于同一网络上,它们可以与任何东西(包括 Windows)通信。
要编写软件并将其安装到 iPhone,您需要一台 Mac。有关详细信息,请参阅如何针对 iPhone 进行开发使用 Windows 开发机器?
Since iOS is built on UNIX, you can use any C code or libraries that uses TCP sockets. Any examples you find using C and sockets will apply. You can also use Apple's
CFSocket
library for more high level access.TCP sockets are TCP sockets, they can talk to anything (Windows included) if it's on the same network.
To write the software and install it to an iPhone, you will need a Mac. For more info see How can I develop for iPhone using a Windows development machine?