比较然后下载
我的应用程序文档文件夹中有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如何将该 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...
您需要下载远程 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.