2

I use Xcode (8.2.1) schemes to build a project with different configurations : enter image description here

Everytime time I change something in the code and hit Command + R to run the project, Xcode builds all the schemes :

enter image description here

AFAIK, this was not the case with Xcode 7. It is extremely heavy, and slows everything down ...

I disabled Find Implicit Dependencies in the schemes configuration, problem still.

Do you know a way to disable unselected schemes builds in background ?

Axel Guilmin
  • 11,454
  • 9
  • 54
  • 64

1 Answers1

0

I don't know a way to disbla building unselected schemes in the background, but I noticed that it happens when using @IBDesignable classes (and it's a bug in XCode 8). Remove @IBDesignable from all of your custom views, and it will probably stop having this behaviour. Just a quick fix before the bug is solved hopefully in XCode 9.

Frederic Adda
  • 5,905
  • 4
  • 56
  • 71