Objective-c - 检查 URL(文件)的时间戳
假设我有一个像 http://www.example.com/example.json
这样的 URL想检查 example.json 的最后修改时间戳。有没有办法用 Objective-C 做到这一点?
Given I have a URL like http://www.example.com/example.json
And I would like to check the last modified timestamp of example.json. Is there a way to do this with Objective-C?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查
NSHTTPURLResponse
的– allHeaderFields
。Checkout
– allHeaderFields
ofNSHTTPURLResponse
.底线是没有一个有保证的方法。您可以在
NSHTTPURLResponse
中检查一个Last-Modified
标头,但根据 RFC 它是可选的。Bottom line is there isn't a guaranteed way. There is a
Last-Modified
header that you can examine in yourNSHTTPURLResponse
, but per the RFC it is optional.