XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog

在工程的 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

  

posted on 2016-12-17 14:58  不及格的程序员-八神  阅读(681)  评论(0编辑  收藏  举报