像[self class]这样的宏

时间:2013-08-05 10:10:58

标签: objective-c macros

我想创建返回自我类的宏。

MyCustomClass.m

static MyCustomClass *_instance = nil;  //not suitable
static [self class]  *_instance = nil;  //incorrect, but want like this
static SELF_CLASS    *_instance = nil;  //target 

如何创建这样的宏:

#define SELF_CLASS ...?...

0 个答案:

没有答案