iPhone 和 Mac 之间的 Socket 连接
我想在 iphone 和 mac 之间建立套接字连接,该怎么做?您能帮忙提供一些链接或示例代码吗?
我的目标是开发一个应用程序,将图像文件从我的 iPhone 发送到我的 Mac。
I want to establish socket connection between iphone and mac, how to do this? Can you please help with some links or sample code.
My goal is to develop an application that will send an image file from my iphone to my mac.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用多种选项:
1) http://code.google.com/p/cocoaasyncsocket/
处理 iPhone 和 Mac 之间的原始套接字连接。
2) http://allseeing-i.com/ASIHTTPRequest/How-to-use
在 Mac 上运行 http 服务器,并使用 ASIHTTPRequest 从 iPhone 发送 POST 请求
3) 使用其他协议,如 ftp 或 smb 等。
(就我个人而言,我会选择http,它很简单)
You could use a variety of options:
1) http://code.google.com/p/cocoaasyncsocket/
To deal with a raw socket connection between your iPhone and mac.
2) http://allseeing-i.com/ASIHTTPRequest/How-to-use
Run an http server on your mac and send POST requests from your iPhone with ASIHTTPRequest
3) Make use of some other protocol like ftp or smb or something.
(personally, I'd pick http, it's pretty simple to get going)