debug/release模式

2016-12-02  本文已影响10人  武一顶顶
打开DEBUG 模式: DEBUG = 1   
关掉DEBUG 模式:  DEBUG =0 
#if DEBUG
       ......  模拟数据    
#else
        ...... 真实数据 
#endif

#ifdef DEBUG
# define NSLog(fmt, ...) NSLog((@"%s -%d " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
#else
# define NSLog(...) {}
#endif
#ifdef DEBUG
    return @"http://111.22.6666.667:8888/dxxxx-api/v1/";
#else
    return @"http://api.devicemmmm.com:80/dxxxxx-api/v1/";
#endif
上一篇下一篇

猜你喜欢

热点阅读