溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

ios5 和ios6 時(shí)間timeIntervalSinceDate的問題

發(fā)布時(shí)間:2020-05-31 19:48:02 來源:網(wǎng)絡(luò) 閱讀:1498 作者:zql5666641 欄目:移動開發(fā)

在ios6中 timeIntervalSinceDate 的處理與ios5中是不一樣的


NSString*origDate =@"2012-11-29 19:43:30";

NSDateFormatter*df =[[NSDateFormatter alloc] init];[df setFormatterBehavior:NSDateFormatterBehavior10_4];

[df setDateFormat:@"YYYY-MM-dd HH:mm:ss"];

NSDate*convertedDate =[df dateFromString:origDate];

[df release];

NSDate* sourceDate =[NSDate date];

NSLog(@"sourceDate: %@", sourceDate);

NSLog(@"convertedDate: %@", convertedDate);

NSTimeInterval ti =[ sourceDate timeIntervalSinceDate:convertedDate];

NSLog(@"interval double: %f", ti);

In iOS 5

interval double:711.113610

in iOS 6

interval double:31623151.242078  解決方法  將日期轉(zhuǎn)換中的YYYY換成  yyyy就好了   timeIntervalSinceNow 的處理也一樣


向AI問一下細(xì)節(jié)

免責(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)容。

AI