iOS 앱 개발 :: APP DEVELOPMENT/Objective C
2012. 1. 9.
No matching function for call to 'NSLog'
iOS Xcode NSLog Debugging 디버깅 시 NSLog가 위치해 있는 클래스명, 함수명, 라인넘버 출력 #ifdef DEBUG #define NSLog(fmt, ...) NSLog((@"%s[Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); #else #define NSLog(...) #endif 디버깅 시 NSLog가 위치해 있는 파일명, 라인넘버, 로그내용 출력 #define NSLog( s, ... ) NSLog( @" %@", [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, [NSString stringWithFormat:(s), ##__VA..