素敵な書き方があったのでメモ
http://stackoverflow.com/questions/969130/nslog-tips-and-tricks
#ifdef DEBUG
# define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
# define DLog(...)
#endif
Go to list of users who liked
More than 5 years have passed since last update.
素敵な書き方があったのでメモ
http://stackoverflow.com/questions/969130/nslog-tips-and-tricks
#ifdef DEBUG
# define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
# define DLog(...)
#endif
Register as a new user and use Qiita more conveniently
Go to list of users who liked