如何编写 iPhone 后端?

发布于 2024-12-05 03:29:32 字数 62 浏览 1 评论 0原文

有谁知道如何编写后端的教程 可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

司马昭之心 2024-12-12 03:29:32

如果您正在 iPhone 上寻找可以访问/解析 JSON 的东西,请考虑使用 SBJson。它非常轻量级,并且非常适合我编写的应用程序。它为 NSString 添加了一个简单的扩展,您可以在其中执行以下操作

NSString *jsonString = [NSString stringWithContentsOfURL:someURL encoding:NSUTF8StringEncoding error:nil];
NSDictionary *jsonDictionary = [jsonString jsonValue];

这是您想要的吗?

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

NSString *jsonString = [NSString stringWithContentsOfURL:someURL encoding:NSUTF8StringEncoding error:nil];
NSDictionary *jsonDictionary = [jsonString jsonValue];

Is this what you want?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文