比较然后下载

发布于 2024-08-31 20:58:35 字数 129 浏览 4 评论 0原文

我的应用程序文档文件夹中有一个 plist,其中有一个字符串,一个 int 值。我的服务器上还有一个 plist,其中还有一个字符串、一个 int 值。

我如何比较两个 int 值,然后如果一个比另一个大则执行某些操作,谢谢大家

I have a plist in my document folder of the app with one string, an int value. An another plist is on my server with also a string, an int value.

How can i compare the two int value and then do something if one is bigger than the other thanks to all

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

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

发布评论

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

评论(2

淡淡绿茶香 2024-09-07 20:58:35

如何将该 int 值作为下载 URL 的一部分(在查询参数中)发送,然后仅在数字不同时才下载文件?否则返回 HTTP 304(内容未修改)响应。至少在 PHP 中这很简单......

How about sending along that int value as part of your download url (in a query parameter), and then only download the file if the number is different? Otherwise return a HTTP 304 (content unmodified) response. This is pretty simple to do in PHP at least...

梦幻之岛 2024-09-07 20:58:35

您需要下载远程 plist 的内容并将其与本地 plist 进行比较。然后,如果它符合标准(例如,如果它更大),您就可以“做某事”。

使用 NSURLConnection 下载数据。

不下载就无法比较。

You need to download the contents of the remote plist and compare it to the local one. Then you can 'do something' if it meets the criteria (e.g. if it's bigger).

Use NSURLConnection to download the data.

You can't compare without downloading.

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