NSDateFormatter最佳實踐

本文介紹NSDateFormatter的性能瓶頸履羞,以及如何解決性能問題。

分別用NSDateFormatter和C的localtime()方法去將時間轉化成一個可讀的字符串庞溜。轉化1024*10次破讨,然后對比時間。
注:localtime()有不可重入和線程安全的問題尔苦,可用localtime_r替換涩馆。

- (void)viewDidLoad {
    [super viewDidLoad];

    [self convertDateToStringUsingNewDateFormatter];

    [self convertDateToStringUsingCLocaltime];
}

- (void)convertDateToStringUsingNewDateFormatter
{
    then = CFAbsoluteTimeGetCurrent();
    for (NSUInteger i = 0; i < ITERATIONS; i++) {
        NSDateFormatter *newDateForMatter = [[NSDateFormatter alloc] init];
        [newDateForMatter setTimeZone:self.timeZone];
        [newDateForMatter setDateFormat:@"yyyy-MM-dd"];
        self.dateAsString = [newDateForMatter stringFromDate:[NSDate date]];
    }
    now = CFAbsoluteTimeGetCurrent();
    NSLog(@"Convert date to string using NSDateFormatter costs time: %f seconds!\n", now - then);
}

- (void)convertDateToStringUsingCLocaltime
{
    then = CFAbsoluteTimeGetCurrent();
    for (NSUInteger i = 0; i < ITERATIONS; i++) {
        time_t timeInterval = [NSDate date].timeIntervalSince1970;
        struct tm *cTime = localtime(&timeInterval);
        self.dateAsString = [NSString stringWithFormat:@"%d-%02d-%02d", cTime->tm_year + 1900, cTime->tm_mon + 1, cTime->tm_mday];
    }
    now = CFAbsoluteTimeGetCurrent();
    NSLog(@"Convert date to string using C localtime costs time: %f seconds!\n", now - then);
}

在控制臺可以看到輸出結果:
NSDateFormatterEfficiency[34122:1583307] Convert date to string using NSDateFormatter costs time: 4.289286 seconds!
NSDateFormatterEfficiency[34122:1583307] Convert date to string using C localtime() costs time: 0.038355 seconds!

使用NSDateFormatter耗時4.289286秒,
使用localtime耗時0.038355秒允坚。
也就是說魂那,NSDateFormatter要比localtime慢100倍+!

用instruments跑了一下time profile稠项,


time profile

可以看到這性能差距之大涯雅。

為啥NSDateFormatter這么耗時呢?

蘋果官方文檔中寫到:

“Creating a date formatter is not a cheap operation. If you are likely to use a formatter frequently, it is typically more efficient to cache a single instance than to create and dispose of multiple instances. One approach is to use a static
variable.”

也就是說展运,創(chuàng)建NSDateFormatter的過程開銷很大活逆!建議使用時保持一個單例,而不是每次去重新創(chuàng)建
NSDateFormatter對象拗胜。

demo中加入一個單例NSDateFormatter的實現(xiàn)方法蔗候,
- (void)convertDateToStringUsingSingletonFormatter
{
then = CFAbsoluteTimeGetCurrent();
for (NSUInteger i = 0; i < ITERATIONS; i++) {
self.dateAsString = [self.dateFormatter stringFromDate:[NSDate date]];
}
now = CFAbsoluteTimeGetCurrent();
NSLog(@"Convert date to string using Singleton Formatter costs time: %f seconds!\n", now - then);
}

控制臺輸出,
NSDateFormatterEfficiency[34122:1583307] Convert date to string using NSDateFormatter costs time: 4.231905 seconds!
NSDateFormatterEfficiency[34122:1583307] Convert date to string using Singleton Formatter costs time: 0.031584 seconds!
NSDateFormatterEfficiency[34050:1580882] Convert date to string using C localtime() costs time: 0.039877 seconds!

嗯挤土,若使用單例琴庵,NSDateFormatter開銷和localtime()的開銷差不多,甚至會稍快一些仰美。

綜上迷殿,最佳實踐應該是,在工程中添加一個NSDateFormatter的單例對象供全工程使用咖杂,需要注意的是庆寺,NSDateFormatter在iOS7之后(包括iOS7)才是線程安全的。

Demo地址
NSDateFormatter

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末诉字,一起剝皮案震驚了整個濱河市懦尝,隨后出現(xiàn)的幾起案子知纷,更是在濱河造成了極大的恐慌,老刑警劉巖陵霉,帶你破解...
    沈念sama閱讀 206,723評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件琅轧,死亡現(xiàn)場離奇詭異,居然都是意外死亡踊挠,警方通過查閱死者的電腦和手機乍桂,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來效床,“玉大人睹酌,你說我怎么就攤上這事∈L矗” “怎么了憋沿?”我有些...
    開封第一講書人閱讀 152,998評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長沪猴。 經(jīng)常有香客問我辐啄,道長,這世上最難降的妖魔是什么字币? 我笑而不...
    開封第一講書人閱讀 55,323評論 1 279
  • 正文 為了忘掉前任则披,我火速辦了婚禮,結果婚禮上洗出,老公的妹妹穿的比我還像新娘士复。我一直安慰自己,他們只是感情好翩活,可當我...
    茶點故事閱讀 64,355評論 5 374
  • 文/花漫 我一把揭開白布阱洪。 她就那樣靜靜地躺著,像睡著了一般菠镇。 火紅的嫁衣襯著肌膚如雪冗荸。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,079評論 1 285
  • 那天利耍,我揣著相機與錄音蚌本,去河邊找鬼。 笑死隘梨,一個胖子當著我的面吹牛程癌,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播轴猎,決...
    沈念sama閱讀 38,389評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼嵌莉,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了捻脖?” 一聲冷哼從身側響起锐峭,我...
    開封第一講書人閱讀 37,019評論 0 259
  • 序言:老撾萬榮一對情侶失蹤中鼠,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后沿癞,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體援雇,經(jīng)...
    沈念sama閱讀 43,519評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,971評論 2 325
  • 正文 我和宋清朗相戀三年椎扬,在試婚紗的時候發(fā)現(xiàn)自己被綠了熊杨。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,100評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡盗舰,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出桂躏,到底是詐尸還是另有隱情钻趋,我是刑警寧澤,帶...
    沈念sama閱讀 33,738評論 4 324
  • 正文 年R本政府宣布剂习,位于F島的核電站蛮位,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏鳞绕。R本人自食惡果不足惜失仁,卻給世界環(huán)境...
    茶點故事閱讀 39,293評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望们何。 院中可真熱鬧萄焦,春花似錦、人聲如沸冤竹。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽鹦蠕。三九已至冒签,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間钟病,已是汗流浹背萧恕。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留肠阱,地道東北人票唆。 一個月前我還...
    沈念sama閱讀 45,547評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像辖所,于是被迫代替她去往敵國和親惰说。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,834評論 2 345

推薦閱讀更多精彩內(nèi)容