LoginSignup
58
44

More than 5 years have passed since last update.

Swiftで処理時間を計測

Last updated at Posted at 2014-12-12

シンプルな(というかざっくりな)場合はこうです。

let start = Date()

//重い処理を書く

let elapsed = Date().timeIntervalSince(start)
print(elapsed)

ベンチマーク用のクラスがほしい方は下記が参考になります。
Swiftで重い処理の処理時間を測定する

58
44
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
58
44