Where to set environment variables for app?

2019-01-17 15:01发布

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条回答
疯言疯语
2楼-- · 2019-01-17 15:36

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

Editing a scheme in Xcode

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

Setting environment variables in Xcode

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

查看更多
登录 后发表回答