Skip to content

How to show build times in Xcode

1 min read

You can show how long the project build in Xcode by entering below command in Terminal.app.

defaults write com.apple.dt.Xcode ShowBuildOperationDuration YES

After entering the command, if you build Xcode it will show the build time on the activity viewer.

The build time will show on activity viewer

If you change YES to NO, the build time will not show in Xcode.


Share this post on:

Previous Post
Comparable enum
Next Post
Multiline string literal tips