如何编写 iPhone 后端?
有谁知道如何编写后端的教程 可以使用 JSON 与 iPhone 进行通信的语言吗?
谢谢。
Does anyone knows of tutorial on how to write a backend in any
language that can communicate with an iPhone using JSON?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在 iPhone 上寻找可以访问/解析 JSON 的东西,请考虑使用 SBJson。它非常轻量级,并且非常适合我编写的应用程序。它为 NSString 添加了一个简单的扩展,您可以在其中执行以下操作
这是您想要的吗?
If you are looking for something on an iPhone that can access/parse JSON look into using SBJson. It is pretty lightweight and has been working great for the applications that I have written. It adds a simple extension to NSString, where you can just do the following
Is this what you want?