Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试将本地数据与服务器同步。是否可以在 IOS 中使用获取“if-Modified-Since”请求?
If-Modified-Since = "If-Modified-Since" ":" HTTP-date
您可以使用以下命令设置 HTTP 字段NSMutableURLRequest:
NSMutableURLRequest
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; [request setValue:@"Your string" forHTTPHeaderField:@"If-Modified-Since"]; // ...
然后您可以检查响应的状态代码并专门查找304(未修改)。
304