你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS 宏編譯debug調試

iOS 宏編譯debug調試

編輯:IOS開發綜合
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");
  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved