当前位置:编程学习 > wap >>

iOS 宏编译debug调试

iOS宏编译的两种方法
 
 
第一种 适合修改原基础上得调试代码
 
#ifdef DEBUG
 
#define NSLog(...) NSLog(__VA_ARGS__)
#define debugMethod() NSLog(@"%s", __func__)
#else
#define NSLog(…)
#define debugMethod()
#endif
----------------------------------------------------------------------------
 
第二种 适合开发起步阶段
 
#define WXDEBUG 1
 
 
#if WXDEBUG
#define WXLog(xx, ...)  NSLog(@"%s(%d): " xx, __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
#else
#define WXLog(xx, …)  ((void)0)
#endif // #ifdef DEBUG
 
 
 
 
//使用: WXLog(@"test");
补充:移动开发 , IOS ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,