这是我的代码:
NSLog(@"Insert time before = %f",[[NSDate date] timeIntervalSince1970]);
[self insertDataInSqlite];
NSLog(@"Insert time after = %f",[[NSDate date] timeIntervalSince1970]);
但我想打印这种插入方法所花费的时间。
答案 0 :(得分:0)
NSLog(@"start time:%@", NSDate.date);
[self insertDataInSqlite];
NSLog(@"end time:%@", NSDate.date);
这是查看插入时间的最简单方法。