Do Not Think!!!

Posted
Filed under 01010101
1. DEBUG 플래그를 설정합니다.

Xcode4일 경우 아래 그림에서 보이는 것 처럼 DEBUG 가 기본 설정되어 있습니다.

사용자 삽입 이미지

2. XXX-Prefix.pch 파일에 아래 내용을 추가합니다.

[code]#ifdef DEBUG

    #define NSLog(s, ...) NSLog(@"<%@(%d):%s> %@", [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, __FUNCTION__, [NSString stringWithFormat:(s), ##__VA_ARGS__])

#else

    #define NSLog(s, ...)#endif[/code]