Paul
Paul

Reputation: 720

Xcode 9 builds all targets after any code

Xcode 9 builds on any code change or any keystroke. I'm using Version 9.1 (9B55)

Upvotes: 2

Views: 454

Answers (1)

nathangitter
nathangitter

Reputation: 9795

This sometimes happens if you are using storyboards with @IBDesignables. To fix the issue, select a storyboard and uncheck Editor > Automatically Refresh Views.

This happens because IBDesignable's re-compile your code so that they can properly render their views in the storyboard.

Upvotes: 3

Related Questions