您好,登錄后才能下訂單哦!
時(shí)間戳與時(shí)間的轉(zhuǎn)換根據(jù)后臺(tái)返回的數(shù)據(jù)樣式我們進(jìn)行不同的方法轉(zhuǎn)換
1. NSDateFormatter *dateFormatter;
dateFormatter = [[NSDateFormatter alloc] init];
// 此處設(shè)置的時(shí)間是月日,根據(jù)工程的需要進(jìn)行修改時(shí)間顯 示
dateFormatter.dateFormat = @"MM-dd";
//[lineDic objectForKey:@"date"] longLongValue]這個(gè)是服務(wù)器放回的數(shù)據(jù)進(jìn)行請求的樣式,根據(jù)自己 服務(wù)器返回的數(shù)據(jù)進(jìn)行相應(yīng)的修改
NSDate *d = [[NSDate alloc]initWithTimeIntervalSince1970:[[lineDic objectForKey:@"date"] longLongValue]/1000.0] ;
//將時(shí)間戳數(shù)據(jù)轉(zhuǎn)換成需要的顯示的字符串的樣式
NSString *string = [NSString stringWithFormat:@"%@",[dateFormatter stringFromDate:d]];
2.將時(shí)間戳字符串轉(zhuǎn)化成data類型
// 創(chuàng)建一個(gè)時(shí)間格式化對象
NSDateFormatter *datef = [[NSDateFormatter alloc] init];
// 設(shè)定時(shí)間的格式
[datef setDateFormat:@"yyyy-MM-dd"];
// 將字符串轉(zhuǎn)換為時(shí)間對象
NSDate *tempDate = [datef dateFromString:str];
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。