首页 > 移动平台 > 详细

iOS 宏条件编译

时间:2016-12-17 16:48:34      阅读:169      评论:0      收藏:0      [点我收藏+]

在工程的 build settings 中的 preprocessor macros 下, debug: DEBUG=1 TestApi=1

#if !defined (TestApi)
    
    config.baseUrl = @"https://121.42.156.51/";
    config.serverIP = @"https://121.42.156.51";
    config.serverPort = nil;
    
#else
    
    config.baseUrl = @"https://121.42.156.51:10443/";
    config.serverIP = @"https://121.42.156.51";
    config.serverPort = @"10443";
    
#endif

  在工程的 build settings 中的 preprocessor macros 下, debug: DEBUG=1

#ifdef DEBUG
    isProduction  = NO;
#else
    isProduction = YES;
#endif

  

iOS 宏条件编译

原文:http://www.cnblogs.com/ioriwellings/p/6189708.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!