Xcode Optimization 4

In the spirit of the question https://stackoverflow.com/questions/8440/visual-studio-optimizations I would like to collect tips and tricks to make XCode4 work faster in everyday life.

In particular, I'm interested in ways to turn off annoying user interface animations, improve build time, and get applications in the debugger faster. Evaluated tips that reduce the amount of Xcode memory and also improve startup time.

+6
source share
2 answers

There is a collection of tiny Xcode plugins that can be found here that let many of Xcode's more annoying (and often distracting) features (including the "annoying UI animations" you mentioned).

Detailed instructions for the plugins and installation process can be found here .

+2
source
  • Disable indexing (this will significantly reduce the number of ram and Xcode CPU)

    $ defaults write com.apple.dt.XCode IDEIndexDisable 1

  • Decrease Xcode priority (this will allow you to do other things when creating)

    $ renice 10 -p PID (where PID is the Xcode process ID)

  • Avoid dependency checks on every build (this will make the build faster)

+1
source

Source: https://habr.com/ru/post/889010/


All Articles