/samples/SampleMap/SampleMap_Prefix.pch
Unknown | 20 lines | 14 code | 6 blank | 0 comment | 0 complexity | 4a1d67656122ee713fb5f5645e09707d MD5 | raw file
1// 2// Prefix header for all source files of the 'SampleApp' target in the 'SampleApp' project 3// 4 5#ifdef __OBJC__ 6 #import <Foundation/Foundation.h> 7 #import <UIKit/UIKit.h> 8 9#if DEBUG 10 11#define RMLog(args...) NSLog( @"%@", [NSString stringWithFormat: args]) 12#define LogMethod() NSLog(@"%s logged method call: -[%@ %s] (line %d)", _cmd, self, _cmd, __LINE__) 13 14#else 15 16#define RMLog(args...) // do nothing. 17#define LogMethod() 18#endif 19 20#endif