十一岁的加重songxing10000…… ------ 回到博主首页

iOS快速单例宏

// 单例
#define DECLARE_SHARED_INSTANCE(className)  \
+ (className *)sharedInstance;


#define IMPLEMENT_SHARED_INSTANCE(className)  \
+ (className *)sharedInstance { \
static className *sharedInstance = nil; \
@synchronized(self) { \
if (!sharedInstance) { \
sharedInstance = [[[self class] alloc] init]; \
} \
} \
return sharedInstance; \
}

 

posted @ 2015-11-02 12:16  songxing10000  阅读(181)  评论(0编辑  收藏  举报