-
选中
PROJECT
->info
->Configurations
添加环境配置
-
PROJECT
中Build Setting
选择Preprocessor macros
修改:pre_debug=1
新建
new scheme
选中tag
和取名-
在
edit Scheme
中选择刚创建的环境pre_debug
如果有使用
cocoapods
的话,需要执行pod install
否则会报错
补充
在
Swift
项目中还需要设置Swift Complier - Custom Flags
->Active Compilation Condition
#if DEBUG // 开发环境
NSLog(@"------DEBUG-------");
//dosomething...
#elif pre_debug // 本地开发环境
NSLog(@"------pre_debug-------");
#else
NSLog(@"------release-------");
#endif