创建单例的正确姿势
Posted zzlei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建单例的正确姿势相关的知识,希望对你有一定的参考价值。
方法 1:
声明 :+ (instancetype)sharedInstance 单例方法
重写:+ (instancetype)allocWithZone:(struct _NSZone *)zone (+(instancetype)alloc 和 +(instancetype)new 都会走 allocWithZone ,多以直接重写 allocWithZone 就ok了)
- (instancetype)copy
- (instancetype)mutableCopy
完整代码:
+ (instancetype)sharedInstance { static MyPerson *person = nil; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ person = [[super allocWithZone:nil] init]; });
return person; } + (instancetype)allocWithZone:(struct _NSZone *)zone {
return [MyPerson sharedInstance]; } - (instancetype)copy {
return [MyPerson sharedInstance]; } - (instancetype)mutableCopy {
return [MyPerson sharedInstance]; }
方法 2:
声明:+ (instancetype)sharedInstance 单例方法
然后让其他可能创建该对象的方法不可用,这里使用到 __attribute__ 。这样在调用下列方法时,编译会报错。
完整代码:
+ (instancetype)sharedInstance; + (instancetype) alloc __attribute__((unavailable("use sharedInstance"))); + (instancetype) new __attribute__((unavailable("use sharedInstance"))); - (instancetype) copy __attribute__((unavailable("use sharedInstance"))); - (instancetype) mutableCopy __attribute__((unavailable("use sharedInstance")));
以上是关于创建单例的正确姿势的主要内容,如果未能解决你的问题,请参考以下文章