ios 計算代碼耗時

計算一塊代碼的執行時間:
CFAbsoluteTimeGetCurrent()函數能夠以毫秒爲單位計算當前時間與2001.1.1差值。

CFAbsoluteTime start = CFAbsoluteTimeGetCurrent();
// do something

CFAbsoluteTime end = CFAbsoluteTimeGetCurrent();

NSLog(@"%f", end - start);

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章