xcode配置多个打包环境

  • 选中PROJECT-> info -> Configurations添加环境配置

    image1.png

    image2.png

  • PROJECTBuild Setting选择Preprocessor macros修改:pre_debug=1

    image3.png

  • 新建new scheme选中tag和取名

  • edit Scheme中选择刚创建的环境pre_debug

    image4.png

如果有使用 cocoapods的话,需要执行 pod install 否则会报错

补充

Swift项目中还需要设置 Swift Complier - Custom Flags -> Active Compilation Condition

image.png
#if DEBUG // 开发环境
    
    NSLog(@"------DEBUG-------");
    
 //dosomething...
#elif pre_debug  // 本地开发环境

    NSLog(@"------pre_debug-------");
    
#else
    
    NSLog(@"------release-------");
    
#endif

你可能感兴趣的:(xcode配置多个打包环境)