There is Default, YES, NO, but what is the Default value? is YES or NO?
Asked
Active
Viewed 807 times
1 Answers
1
tl;dr: it defaults to YES
.
Based on empirical observations and logical conclusions (hah), this property always defaults to YES
, as of today.
This setting is what enables indexing of features such as autocompletion and rich navigation in Xcode. So when you build the project via Xcode, it will certainly be true, because it will seize the opportunity that the project is already being built to create that indexing for us.
One would expect that this property should default to NO
when building via CLI (i.e. xcodebuild
command line), however, as reported by Peter Stainberger here, that's not the case:
So yeah, as of today, this always defaults to YES
, however, it could be changed in the future.

Roger Oba
- 1,292
- 14
- 28