-->

Where to set environment variables for app?

2019-01-17 14:45发布

问题:

I'm working with source code that is frozen and cannot be changed; but its ENV aware and expects changes through the ENV. The source code is being used in an Xcode 4/iOS project.

Xcode 3 allowed us to set environmental variables on the app in the Executable folder (see Figure 1 at iOS Debugging Magic). Xcode 4 appears to lack the 'executable info' that was present in Xcode 3.

I've looked through a number of similar questions on Stack Overflow, but no one has answered the questions. Answers usually degenerate to preprocessor macros. Confer: How to set environment variables in iPhone executable using XCode 4?, Conditional Environment Variables in Xcode, and Where to set environmental variables in ios?.

How does on set an app's environment variables in Xcode 4?

回答1:

You can set environment variables via Xcode Schemes. To edit a scheme, select it in the top bar:

Choose the Run mode and go to the Arguments tab, and there you go...

By default, these settings are also used for the Test and Profile modes.