如何从 iPhone 应用程序获取偏好设置到服务器

发布于 2024-10-21 05:13:05 字数 129 浏览 1 评论 0原文

菜鸟问题。我不是在寻找代码,而是在我的应用程序中获取首选项的一般过程将存储在服务器上。
1. 我应该如何将其存储在 iPhone 上(表;数组;字典或只是各种文本框)以及 2. 我使用什么流程将它们从手机/应用程序获取到服务器。 干杯

Noobie Question. I am not after the code but rather the general process to get the preferences picked in my app are to be stored on a server.
1. how should I store this on the iphone (table ; array; dictionary or just various textboxes) and 2. What process to do I use to get them from the phone/app to the server.
Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦断已成空 2024-10-28 05:13:05

您有很多选择;这里有两个:

对于少量首选项,您可以将它们编码为 URL 作为参数,并通过使用 NSURLConnection / NSURLRequest 发出请求将它们传递到服务器。

对于更多参数,您可以将它们放入 NSDictionary 中,并使用 JSON 库将它们序列化为字符串,然后您可以将其 POST 到服务器。

You have lots of options available to you; here are two:

For a small number of preferences, you could encode them in a URL as parameters and pass them to your server by making a request using using NSURLConnection / NSURLRequest.

For more parameters, you could place them in a NSDictionary and use a JSON library to serialize them out as a string, which you could POST to your server.

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