ios oc单例宏定义

Posted weicy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios oc单例宏定义相关的知识,希望对你有一定的参考价值。

 

#undef AS_SINGLETON

#define AS_SINGLETON( __class ) \

- (__class *)sharedInstance; \

+ (__class *)sharedInstance;

#undef DEF_SINGLETON

#define DEF_SINGLETON( __class ) \

- (__class *)sharedInstance \

{ \

return [__class sharedInstance]; \

} \

+ (__class *)sharedInstance \

{ \

static dispatch_once_t once; \

static __class * __singleton__; \

dispatch_once( &once, ^{ __singleton__ = [[[self class] alloc] init]; } ); \

return __singleton__; \

} \

+ (instancetype)allocWithZone:(struct _NSZone *)zone \

{ \

static dispatch_once_t once; \

static __class * __singleton__; \

dispatch_once(&once, ^{ __singleton__ = [super allocWithZone:zone]; } ); \

return __singleton__; \

}

 

 

使用方法:在.h中声明AS_SINGLETON(__class)

      .m中声明DEF_SINGLETON(__class)

解释:为了防止别人不小心利用alloc/init方式创建示例,也为了防止别人故意为之,我们要保证不管用什么方式创建都只能是同一个实例对象,这就得重写allocWithZone;之前我是没有这个的,这是alloc init 和shareinstance创建的不是同一个

参考链接:http://www.cocoachina.com/ios/20160713/17017.html?ref=myread这个写的很详细

以上是关于ios oc单例宏定义的主要内容,如果未能解决你的问题,请参考以下文章

创建工程常量 (OC中的宏定义)

OC中extern、static、const和宏定义

iOS开发ARC与MRC下单例的完整写法与通用宏定义

单例模式:Qt本身就提供了专门的宏 Q_GLOBAL_STATIC 通过这个宏不但定义简单,还可以获得线程安全性

iOS开发中常用的宏

Objective-C和Swift实现单例的几种方式