您好,登錄后才能下訂單哦!
在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 的處理也一樣
免責(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)容。