常用的作法是做出不同的 conditional log statement
#if( DEBUG )
#define MYLog(args...) NSLog(args)
#else
#define MYLog(args...)
#endif
或者API的連線URL,做個防護機制
#define TESTING 1
#ifdef DEBUG
#ifdef TESTING
const NSString* APIBASE = @"http://testbaseurl";
#else
const NSString* APIBASE = @"http://officialtbaseurl";
#endif
#else
const NSString* APIBASE = @"http://officialtbaseurl";
#endif
沒有留言:
張貼留言