/**
* 处理NSLog的debug版和release版
*/
#ifndef __OPTIMIZE__
#define NSLog(...) printf("%s\n",[[NSString stringWithFormat:__VA_ARGS__] UTF8String])
#else
#define NSLog(...) {}
#endif
/**
* 处理NSLog的debug版和release版
*/
#ifndef __OPTIMIZE__
#define NSLog(...) printf("%s\n",[[NSString stringWithFormat:__VA_ARGS__] UTF8String])
#else
#define NSLog(...) {}
#endif