Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/amisare/NNMacros

NNMacros 通过宏的方式来简化 iOS 开发中 OC 的语法和 Api 的操作
https://github.com/amisare/NNMacros

Last synced: about 2 months ago
JSON representation

NNMacros 通过宏的方式来简化 iOS 开发中 OC 的语法和 Api 的操作

Awesome Lists containing this project

README

        

NNMacros

[![GitHub release](https://img.shields.io/github/release/amisare/NNMacros.svg)](https://github.com/amisare/NNMacros/releases)
[![CocoaPods](https://img.shields.io/cocoapods/v/NNMacros.svg)](https://cocoapods.org/pods/NNMacros)
[![CocoaPods](https://img.shields.io/cocoapods/p/NNMacros.svg)](https://cocoapods.org/pods/NNMacros)
[![GitHub license](https://img.shields.io/github/license/amisare/NNMacros.svg)](https://github.com/amisare/NNMacros/blob/master/LICENSE)

## 项目简介

- NNMacros 通过宏的方式来简化 Objective-C 在 iOS 开发中的语法和 API

## 功能介绍

### nn_lazygetter
nn_lazygetter 简写懒加载 getter 实现

### nn_associated_synthesize
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

1. `nn_lazygetter(type, ...)`
- 3 个入参:
- type: 属性类型 `类:NSObject *、NSString * ...`(因为懒加载是对象属性,所以此处省略*号)
- param0:(必传)属性名称
- param1:(选传)插入的初始话代码块,传参为代码块`{}`
- 4 个入参:
- type: 属性类型 `类:NSObject *、NSString * ...`(因为懒加载是对象属性,所以此处省略*号)
- param0:(必传)属性名称
- param1:(选传)非property属性,或getter和setter均需重写时,传入操作变量 如:变量var,则传入var
- param2:(选传)插入的初始话代码块,传参为代码块`{}`

### nn_associated_synthesize

1. `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方法名(*需要严格按照苹果命名规则书写*)

2. `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方法最终返回值

3. `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关联保存的对象

## 使用示例

### nn_lazygetter
nn_lazygetter宏替换了懒加载getter方法中的if判断部分,精简了懒加载书写,对于属性较多的类尤为明显。

#### 1. 定义一个成员属性

```
@interface AwfulNSObject
{
UITableView *table;
}
@property (nonatomic, strong) UITableView *tableView;
@end

```

#### 2.实现懒加载getter

##### 示例一:实例化对象,默认调用的new方法

```
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;
}
```

##### 示例三:通过第四个参数指定,指定属性(*用于处理getter方法和setter方法都需要重写的情况*)

```
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
nn_associated_synthesize用于简化通过associated为类动态添加属性时的getter和setter实现。

在开发中常常会通过runtime在categroy中为已有的类动态添加属性,来丰富类的实现。此过程中,开发者需要为categroy的property手动实现getter和setter方法,并在getter和setter方法中通过runtime的objc_getAssociatedObject和objc_setAssociatedObject实现属性的加载和存储。这些代码通常是枯燥的并且雷同!

#### 1. 在category中定义一个成员属性

```
@interface NSObject (Awful)
@property (nonatomic, assign) NSInteger param;
@end

```

#### 2.实现getter/setter

```
@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
```

### nn_associated_getter

#### 1. 在category中定义一个成员属性

```
@interface NSObject (Awful)
@property (nonatomic, assign) NSInteger param;
@end

```

#### 2.实现getter

##### 示例一:无hook代码块参数于nn_associated_synthesize中相同

```
@implementation NSObject (Awful)
nn_associated_getter(nonatomic, assign, NSInteger, param)
@end
```

等价

```
@implementation NSObject (Awful)
- (NSInteger)param {
return [objc_getAssociatedObject(self, _cmd) integerValue];
}
@end
```

##### 示例二:有hook代码块参数

```
@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
```

### nn_associated_setter

#### 1. 在category中定义一个成员属性

```
@interface NSObject (Awful)
@property (nonatomic, assign) NSInteger param;
@end

```

#### 2. 实现setter

##### 示例一:无hook代码块参数于nn_associated_synthesize中相同

```
@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
```

##### 示例二:有hook代码块参数

```
@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 集成

安装最新版的 CocoaPods:

```bash
$ gem install cocoapods
```

在 `podfile` 中添加:

```ruby
pod 'NNMacros', '~> 2.6.0'
```

然后在终端执行:

```bash
$ pod install
```

如安装失败,提示:

```bash
[!] Unable to find a specification for `NNMacros`
```

尝试使用命令:

```bash
pod install --repo-update
```

### 通过 Carthage 集成

[Carthage](https://github.com/Carthage/Carthage) 是一个去中心化的依赖管理器,用于构建依赖和提供二进制 Framework 。

可以通过以下 [Homebrew](http://brew.sh/) 命令安装 Carthage :

```bash
$ brew update
$ brew install carthage
```

通过 Carthage 将 NNMacros 集成到 Xcode 项目中,需要在 `Cartfile` 中添加:

```ogdl
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](https://github.com/ReactiveCocoa/ReactiveCocoa)
宏的可变参数分析使用`metamacros.h`实现,源于[ReactiveCocoa](https://github.com/ReactiveCocoa/ReactiveCocoa)。
- [P99](http://p99.gforge.inria.fr/)
`metamacros.h`中提到,其部分实现的灵感来自于[P99](http://p99.gforge.inria.fr/)。