I wonder how to write multiple instruction in Objective C macro. For example, I want to create a macro which runs two instructions below,
NSLog(message);
DDLogDebug(message);
I tried,
#define LOGMESSAGE(message) (NSLog(message);DDLogDebug(message);)
But it gave me compiler errors.