iOS 单例篇

1. 单例在ARC中的实现

ARC中单例实现步骤

  • 在类的内部提供一个static修饰的全局变量
  • 提供一个类方法,方便外界访问
  • 重写+allocWithZone方法,保证永远都只为单例对象分配一次内存空间
  • 严谨起见,重写-copyWithZone方法和-MutableCopyWithZone方法

ARC中单例代码实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#import "Tools.h"

@implementation Tools
// 创建静态对象 防止外部访问
static Tools *_instance = nil;
+(instancetype)allocWithZone:(struct _NSZone *)zone{
// @synchronized (self) {
// // 为了防止多线程同时访问对象,造成多次分配内存空间,所以要加上线程锁
// if (_instance == nil) {
// _instance = [super allocWithZone:zone];
// }
// return _instance;
// }
// 也可以使用一次性代码
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
if (_instance == nil) {
_instance = [super allocWithZone:zone];
}
});
return _instance;
}
// 为了使实例易于外界访问 我们一般提供一个类方法
// 类方法命名规范 share类名|default类名|类名
+(instancetype)shareTools{
//return _instance;
// 最好用self 用Tools他的子类调用时会出现错误
return [[self alloc] init];
}
// 为了严谨,也要重写copyWithZone 和 mutableCopyWithZone
-(id)copyWithZone:(NSZone *)zone{
return _instance;
}
-(id)mutableCopyWithZone:(NSZone *)zone{
return _instance;
}

2. 单例在MRC中的实现

MRC单例实现步骤

  • 在类的内部提供一个static修饰的全局变量
  • 提供一个类方法,方便外界访问
  • 重写+allocWithZone方法,保证永远都只为单例对象分配一次内存空间
  • 严谨起见,重写-copyWithZone方法和-MutableCopyWithZone方法
  • 重写release方法
  • 重写retain方法
  • 建议在retainCount方法中返回一个最大值

配置MRC环境

  • 注意ARC不是垃圾回收机制,是编译器特性
  • 配置MRC环境:build setting ->搜索automatic ref->修改为N0
    MRC中单例代码实现
  • 配置好MRC环境之后,在ARC代码基础上重写下面的三个方法即可
    1
    2
    3
    4
    5
    6
    7
    8
    9
    -(oneway void)release{

    }
    -(instancetype)retain{
    return _instance;
    }
    -(NSUInteger)retainCount{
    return MAXFLOAT;
    }

    3. 单例的另一种实现

    直接告诉外面 alloc、new、copy、mutableCopy方法不可以直接调用,否则编译不过。
    1
    2
    3
    4
    + (instancetype)alloc __attribute__((unavailable("call sharedInstance instead")));
    + (instancetype)new __attribute__((unavailable("call sharedInstance instead")));
    - (instancetype)copy __attribute__((unavailable("call sharedInstance instead")));
    - (instancetype)mutableCopy __attribute__((unavailable("call sharedInstance instead")));
-------------本文结束感谢您的阅读-------------
最近的文章

iOS ARC下block的循环引用问题样例探究

下面的六种情况,是否会产生内存泄漏。12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455//情况一- (void)case1 &# …

继续阅读
更早的文章

Mac 终端常用命令

目录操作 命令 功能描述 示例 pwd 显示当前路径 pwd cd / 跳转到根路径下 cd / cd .. 跳转到上级路径 cd .. cd 或 ~ 跳转到当前登录用户的家目录 cd 或 cd ~ ls 可以列出当前路径下的所有可见文件和文件夹 ls ls - …

继续阅读