- NNMacros 通过宏的方式来简化 Objective-C 在 iOS 开发中的语法和 API
nn_lazygetter 简写懒加载 getter 实现
nn_associated_synthesize用于简化通过associated为类动态添加属性时的getter和setter实现。
-
nn_associated_synthesize: 属性getter/setter方法实现,类似于 @implementation 中的 @synthesize
-
nn_associated_getter: 属性getter方法实现
-
nn_associated_setter: 属性setter方法实现
-
nn_lazygetter: 属性懒加载getter方法实现
语法说明(详细使用见使用示例)
nn_lazygetter(type, ...)
- 3 个入参:
- type: 属性类型
类:NSObject *、NSString * ...
(因为懒加载是对象属性,所以此处省略*号) - param0:(必传)属性名称
- param1:(选传)插入的初始话代码块,传参为代码块
{}
- type: 属性类型
- 4 个入参:
- type: 属性类型
类:NSObject *、NSString * ...
(因为懒加载是对象属性,所以此处省略*号) - param0:(必传)属性名称
- param1:(选传)非property属性,或getter和setter均需重写时,传入操作变量 如:变量var,则传入var
- param2:(选传)插入的初始话代码块,传参为代码块
{}
- type: 属性类型
- 3 个入参:
-
nn_associated_synthesize(atomic_type, arc_type, type, getter, setter)
- atomic_type:
nonatomic、atomic
- arc_type:
strong、weak、assign、copy
- data_type: 属性类型
类:NSObject *、NSString * ... 基本数据类:NSInteger、BOOL ...
- getter: getter方法名(需要严格按照苹果命名规则书写)
- setter: setter方法名(需要严格按照苹果命名规则书写)
- atomic_type:
-
nn_associated_getter(atomic_type, arc_type, data_type, ...)
- atomic_type:
nonatomic、atomic
- arc_type:
strong、weak、assign、copy
- data_type: 属性类型
类:NSObject *、NSString * ... 基本数据类:NSInteger、BOOL ...
- param0:(必传)属性名称(需要严格按照苹果命名规则书写)
- param1:(选传)hook_after_load,传参为代码块
{}
,代码块插入到objc_getAssociatedObject之后 - param2:(选传)hook_befor_ret,传参为代码块
{}
,代码块插入到return之前
param1、param2中间代码段可获取的参数有:
- __key: objc_getAssociatedObject中用到的参数key
- __obj: objc_getAssociatedObject加载获取的对象
- __ivar: getter方法最终返回值
- atomic_type:
-
nn_associated_setter(atomic_type, arc_type, data_type, ...)
- atomic_type:
nonatomic、atomic
- arc_type:
strong、weak、assign、copy
- data_type: 属性类型
类:NSObject *、NSString * ... 基本数据类:NSInteger、BOOL ...
- param0:(必传)属性名称(需要严格按照苹果命名规则书写)
- param1:(选传)hook_begin_set,传参为代码块
{}
,代码块插入到setter方法最开始执行位置 - param2:(选传)hook_befor_store,传参为代码块
{}
,代码块插入到objc_setAssociatedObject之前
param1、param2中间代码段可获取的参数有:
- __key: objc_setAssociatedObject中用到的参数key
- __ivar: setter方法传入参数值
- __obj: objc_getAssociatedObject关联保存的对象
- atomic_type:
nn_lazygetter宏替换了懒加载getter方法中的if判断部分,精简了懒加载书写,对于属性较多的类尤为明显。
@interface AwfulNSObject
{
UITableView *table;
}
@property (nonatomic, strong) UITableView *tableView;
@end
nn_lazygetter(UITableView, tableView)
等价
- (UITableView *)tableView
{
if (!_tableView) {
_tableView = [UITableView new];
}
return _tableView;
}
nn_lazygetter(UITableView, tableView, {
self.tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped];
self.tableView.delegate = self;
self.tableView.dataSource = self;
})
等价
- (UITableView *)tableView
{
if (!_tableView) {
self.tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped];
self.tableView.delegate = self;
self.tableView.dataSource = self;
}
return _tableView;
}
nn_lazygetter(UITableView, tableView, {
self->table = [UITableView new];
}, self->table)
等价
- (UITableView *)tableView
{
if (!self->table) {
self->table = [UIImageView new];
}
return self->table;
}
nn_associated_synthesize用于简化通过associated为类动态添加属性时的getter和setter实现。
在开发中常常会通过runtime在categroy中为已有的类动态添加属性,来丰富类的实现。此过程中,开发者需要为categroy的property手动实现getter和setter方法,并在getter和setter方法中通过runtime的objc_getAssociatedObject和objc_setAssociatedObject实现属性的加载和存储。这些代码通常是枯燥的并且雷同!
@interface NSObject (Awful)
@property (nonatomic, assign) NSInteger param;
@end
@implementation NSObject (Awful)
nn_associated_synthesize(nonatomic, assign, NSInteger, param, setParam)
@end
等价
@implementation NSObject (Awful)
- (NSInteger)param {
return [objc_getAssociatedObject(self, _cmd) integerValue];
}
- (void)setParam:(NSInteger)param {
objc_setAssociatedObject(self, @selector(param), @(param), OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
@end
@interface NSObject (Awful)
@property (nonatomic, assign) NSInteger param;
@end
@implementation NSObject (Awful)
nn_associated_getter(nonatomic, assign, NSInteger, param)
@end
等价
@implementation NSObject (Awful)
- (NSInteger)param {
return [objc_getAssociatedObject(self, _cmd) integerValue];
}
@end
@implementation NSObject (Awful)
nn_associated_getter(nonatomic, assign, NSInteger, param, {
NSLog(@"%@", __obj);
}, {
__ivar += 100;
})
@end
等价
@implementation NSObject (Awful)
- (NSInteger)param {
id obj = objc_getAssociatedObject(self, _cmd);
NSLog(@"%@", obj);
NSInteger value = [obj integerValue];
value += 100;
return value;
}
@end
@interface NSObject (Awful)
@property (nonatomic, assign) NSInteger param;
@end
@implementation NSObject (Awful)
nn_associated_setter(nonatomic, assign, NSInteger, param)
@end
等价
@implementation NSObject (Awful)
- (void)setParam:(NSInteger)param {
objc_setAssociatedObject(self, @selector(param), @(param), OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
@end
@implementation NSObject (Awful)
nn_associated_setter(nonatomic, assign, NSInteger, param, {
__ivar += 100;
}, {
NSLog(@"%@", __obj);
})
@end
等价
@implementation NSObject (Awful)
- (void)setParam:(NSInteger)param {
value = param;
value += 100;
id obj = @(value);
NSLog(@"%@", obj);
objc_setAssociatedObject(self, @selector(param), obj, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
@end
- 添加NNMacros目录到项目中
#import "NNMacros.h"
安装最新版的 CocoaPods:
$ gem install cocoapods
在 podfile
中添加:
pod 'NNMacros', '~> 2.6.0'
然后在终端执行:
$ pod install
如安装失败,提示:
[!] Unable to find a specification for `NNMacros`
尝试使用命令:
pod install --repo-update
Carthage 是一个去中心化的依赖管理器,用于构建依赖和提供二进制 Framework 。
可以通过以下 Homebrew 命令安装 Carthage :
$ brew update
$ brew install carthage
通过 Carthage 将 NNMacros 集成到 Xcode 项目中,需要在 Cartfile
中添加:
github "amisare/NNMacros" ~> 2.5.1
执行 carthage
构建 Framework ,并将 NNMacros.framework
添加到 Xcode 项目中。
在使用数组和字典中会遇编译错误的情况(其实是同一类问题)
- 在使用@[]数组时,会报编译错误
编译错误情景:
nn_lazygetter(NSMutableArray, arr_issue_0, ({
self.arr_issue_0 = [NSMutableArray new];
//编译器会报错,无法编译通过:
[self.arr_issue_0 addObjectsFromArray:@[@"str_x_0", @"str_x_1"]];
}))
处理方法:在@[]外面加上小括号(@[])
nn_lazygetter(NSMutableArray, arr_issue_0, ({
self.arr_issue_0 = [NSMutableArray new];
//解决方法,在数组外面加上小括号
[self.arr_issue_0 addObjectsFromArray:(@[@"arr_objc_0", @"arr_objc_1"])];
}))
- 在使用@{}字典时,会报编译错误
编译错误情景:
nn_lazygetter(NSMutableDictionary, dic_issue_0, ({
self.dic_issue_0 = [NSMutableDictionary new];
//编译器会报错,无法编译通过
[self.dic_issue_0 setValuesForKeysWithDictionary:@{@"key0":@"value0",
@"key1":@"value1"}];
}))
处理方法:在@{}外面加上小括号(@{})
nn_lazygetter(NSMutableDictionary, dic_issue_0, ({
self.dic_issue_0 = [NSMutableDictionary new];
//解决方法,在数组外面加上小括号
[self.dic_issue_0 setValuesForKeysWithDictionary:(@{@"key0":@"value0",
@"key1":@"value1"})];
}))
- ReactiveCocoa
宏的可变参数分析使用
metamacros.h
实现,源于ReactiveCocoa。 - P99
metamacros.h
中提到,其部分实现的灵感来自于P99。