#define mySynthesize(op) @synthesize op = _op;
因此,而不是打字這個宏有什麼問題?
@synthesize someVar=_someVar;
@synthesize otherVar=_otherVar;
我可以做
mySynthesize (someVar);
好了,它不工作,雖然。我做錯了什麼?
#define mySynthesize(op) @synthesize op = _op;
因此,而不是打字這個宏有什麼問題?
@synthesize someVar=_someVar;
@synthesize otherVar=_otherVar;
我可以做
mySynthesize (someVar);
好了,它不工作,雖然。我做錯了什麼?
你不只是問這裏同樣的宏問題http://stackoverflow.com/questions/7472063/i-want-to-create-a-simple-macro? –
不同的問題,我認爲。 –