美文网首页
适用于 ARC 单例模式通用宏

适用于 ARC 单例模式通用宏

作者: 梦蕊dream | 来源:发表于2018-04-10 15:57 被阅读10次

常常NSObject使用单例都需要每个文件都写,可以定义通用宏。

步骤

  • 1.创建.h文件
    1. 编写宏
#define SingleH(name) +(instancetype)shared##name;

#define SingleM(name) static id _instance;\
+(instancetype)allocWithZone:(struct _NSZone *)zone{\
    static dispatch_once_t onceToken;\
    dispatch_once(&onceToken, ^{\
        _instance = [super allocWithZone:zone];\
    });\
    return _instance;\
}\
+(instancetype)shared##name{\
    return [[self alloc]init];\
}\
- (id)copyWithZone:(NSZone *)zone{\
    return _instance;\
}\
- (id)mutableCopyWithZone:(NSZone *)zone{\
    return _instance;\
}
  • 注意点:带参数的宏写法、多行代码宏处理
  • 3.调用

.h文件中调用:SingleH(fileTool)
.m文件中调用:SingleH(fileTool)

如果要兼容 MRC 环境,使用宏编译区分即可。

带参数的宏

#define angle2Rad(angle) ((angle) / 180.0 * M_PI)

相关文章

网友评论

      本文标题:适用于 ARC 单例模式通用宏

      本文链接:https://www.haomeiwen.com/subject/osrnhftx.html