常常NSObject使用单例都需要每个文件都写,可以定义通用宏。
步骤
- 1.创建
.h
文件 - 编写宏
#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)
网友评论