File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ TheRouter.removeRouter(TheRouterViewCApi.patternString)
344
344
345
345
### 如何让 OC 类也享受到 Swift 路由
346
346
347
- 这是一个 OC 类的界面,实现路由的跳转需要继承 OC 类,并实现 TheRouterAble 协议即可
347
+ 这是一个 OC 类的界面,实现路由的跳转需要实现 TheRouterableProxy 协议即可
348
348
349
349
``` Swift
350
350
@interface TheRouterBController : UIViewController
@@ -370,7 +370,7 @@ TheRouter.removeRouter(TheRouterViewCApi.patternString)
370
370
}
371
371
372
372
+ (NSUInteger)priority {
373
- return 1 ;
373
+ return TheRouterPriorityDefault ;
374
374
}
375
375
376
376
+ (id)registerActionWithInfo: (NSDictionary< NSString * , id> * )info {
Original file line number Diff line number Diff line change 8
8
9
9
Pod ::Spec . new do |s |
10
10
s . name = 'TheRouter'
11
- s . version = '1.1.5 '
11
+ s . version = '1.1.6 '
12
12
s . summary = 'TheRouter一个用于模块间解耦和通信,基于Swift协议进行动态懒加载注册路由与打开路由的工具。同时支持通过Service-Protocol寻找对应的模块,并用 protocol进行依赖注入和模块通信。'
13
13
14
14
# This description is used to generate tags and improve search results.
You can’t perform that action at this time.
0 commit comments