時間戳轉(zhuǎn)具體時間
例如:
時間戳:1470657035000
具體日期(北京):2016-08-08 19:50:35
用到的類
NSDate: 日期時間類
NSDateFormatter: 轉(zhuǎn)換時間為指定格式
NSTimeZone: 時區(qū)
具體轉(zhuǎn)換代碼:
//將時間戳轉(zhuǎn)換為日期對象
NSDate *date = [NSDate dateWithTimeIntervalSince1970:stampStr.doubleValue/1000];
//設(shè)置要轉(zhuǎn)換的日期格式
NSString *dateFormatter = @"yyyy-MM-dd HH:mm";
//初始化NSDateFormatter對象
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
//設(shè)置時區(qū)
formatter.timeZone = [NSTimeZone localTimeZone];
//設(shè)置日期格式
[formatter setDateFormat:dateFormatter];
//獲取轉(zhuǎn)換后的結(jié)果
NSString *rest = [formatter stringFromDate:date];
這里有幾個需要注意的點:
- 因為后臺傳到客戶端的時間為毫秒,而dateWithTimeIntervalSince1970函數(shù)的入?yún)槊耄赃@個地方需要除以1000將其轉(zhuǎn)換為秒驶沼,但這個時候得到的時間為“UTC”時間。所以难咕,為了能得到當?shù)氐臅r間,我們需要設(shè)置時區(qū)距辆。
什么是UTC時間?
- 協(xié)調(diào)世界時(英:Coordinated Universal Time 余佃,法:Temps Universel Coordonné),又稱世界統(tǒng)一時間跨算,世界標準時間爆土,國際協(xié)調(diào)時間。英文(CUT)和法文(TUC)的縮寫不同漂彤,作為妥協(xié)雾消,簡稱UTC(摘自百度百科) 灾搏。
- 中國大陸挫望、中國香港、中國澳門狂窑、中國臺灣媳板、蒙古國、新加坡泉哈、馬來西亞蛉幸、菲律賓、西澳大利亞州的時間與UTC的時差均為+8丛晦,也就是UTC+8(相差八個小時)
這套時間系統(tǒng)被應(yīng)用于許多互聯(lián)網(wǎng)和萬維網(wǎng)的標準中奕纫,因此在日常開發(fā)中UTC時間的使用較為常見- 格林尼治標準時(GMT)
是指位于倫敦郊區(qū)的皇家格林尼治天文臺的標準時間(開發(fā)中不常用)
- 設(shè)置時區(qū)的幾種方式:
//獲取系統(tǒng)時區(qū)
NSTimeZone *zone = [NSTimeZone systemTimeZone];
//當?shù)貢r區(qū)
NSTimeZone *localTime = [NSTimeZone localTimeZone];
//所有地區(qū)名稱,
//Returns an array of strings listing the IDs of all the time zones known to the system
NSArray *zoneArrs = [NSTimeZone knownTimeZoneNames];
//根據(jù)以上獲取到的時區(qū),來初始化對應(yīng)的時區(qū)對象
[NSTimeZone timeZoneWithName:@"Europe/Berlin"]
通過以上方法烫沙,我們可以獲取到對應(yīng)的時區(qū)匹层,然后設(shè)置對應(yīng)的時區(qū)對象,就可以獲取具體時間字符串的表示锌蓄。
其中有一個時區(qū)全稱和簡寫對應(yīng)的字典升筏,具體調(diào)用如下:
[[NSTimeZone abbreviationDictionary] enumerateKeysAndObjectsUsingBlock:^(NSString * _Nonnull key, NSString * _Nonnull obj, BOOL * _Nonnull stop) {
NSLog(@"key===%@,value===%@",key,obj);
}];
輸出的結(jié)果為:
key===EDT,value===America/New_York
key===GMT,value===GMT
key===AST,value===America/Halifax
...
有了NSTimeZone以及NSDate就可以轉(zhuǎn)了,具體格式化的時候可以參考:時間格式化對照表 - yyyy-MM-dd HH:mm:ss
其中在格式化的時候需要注意的小時H的大小寫:
如果我們要用24小時格式展示:HH:mm:ss
如果我們用12小時格式展示:hh:mm:ss
同理瘸爽,如果我們要將給定的時間轉(zhuǎn)為具體時間戳,那么:
//初始化日期格式對象
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
//設(shè)置時區(qū)
formatter.timeZone = [NSTimeZone localTimeZone];
//設(shè)置要格式化的日期格式
[formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
//設(shè)置時間字符串
NSDate *date = [formatter dateFromString:@"2016-08-08 19:50:35"];
//獲取到時間戳您访,毫秒
NSTimeInterval time = [date timeIntervalSince1970]*1000;
其中,得到的NSDate為UTC時間剪决,這一點一定要明確灵汪,所以不論怎么轉(zhuǎn)換檀训,設(shè)置時區(qū)是很重要的一步。
下面貼上我平時使用的時候做的關(guān)于NSDateFormatter的擴展识虚,方法如下:
//給定格式和日期肢扯,得到對應(yīng)的時間字符串
+ (NSString *)convertToStringUsingFormatter:(NSString *)dateFormatter withDate:(NSDate *)date {
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.timeZone = [NSTimeZone localTimeZone];
[formatter setDateFormat:dateFormatter];
return [formatter stringFromDate:date];
}
//給定日期字符串、格式以及時區(qū)担锤,轉(zhuǎn)換為日期對象
+ (NSDate *)convertToDateFromString:(NSString *)dateString usingFormatter:(NSString *)dateFormatter timeZone:(NSString *)timeZoneName {
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
if ([UCARUtilities isEmptyObj:timeZoneName])
{
formatter.timeZone = [NSTimeZone localTimeZone];
}
else
{
formatter.timeZone = [NSTimeZone timeZoneWithName:timeZoneName];
}
[formatter setDateFormat:dateFormatter];
return [formatter dateFromString:dateString];
}
希望能對大家有所幫助N党俊!