iOS快速单例宏

时间:2015-11-02 13:35:17   收藏:0   阅读:262
// 单例
#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; }

 

原文:http://www.cnblogs.com/songxing10000/p/4929814.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!