- 获取一个webview 加载完成之后的时间,可认为服务器时间
UIWebView * webView;
NSCachedURLResponse * resp = [[NSURLCache sharedURLCache] cachedResponseForRequest:webView.request];
NSLog(@" %@ ", [(NSHTTPURLResponse *)resp.response allHeaderFields]);
将日期进行格式转换
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.locale = [NSLocale localeWithLocaleIdentifier:@"en_US"];//日期语法
formatter.dateFormat = @"EEE, dd MMM yyyy HH:mm:ss zzz";
NSDate * date = [formatter dateFromString:@"Fri, 25 Nov 2016 11:26:31 GMT"];
NSLog(@"%@",date);
*** 转成时间戳的过程中,注意要设置 formatter的local 属性,当初就是在这个地方浪费了很长时间***