11

I run a script during a build phase.

Xcode lets you define user-defined build settings. I thought I would use these settings to store values or paths that I want to pass to the script.

Is this possible? How can I pass user-defined build settings to script during the build phase? Can you point me at some documentation or tutorial?

I am using Xcode 4.3.1

Rahul Iyer
  • 19,924
  • 21
  • 96
  • 190

1 Answers1

4

All you need to do is use the appropriate form of the variable name, depending where you are using it.

Eg: $foo in the run script dialog box.

Rahul Iyer
  • 19,924
  • 21
  • 96
  • 190