Skip to content

Commit 9eae116

Browse files
committed
refine: 升级版本号1.1.6
1 parent cbe771d commit 9eae116

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ TheRouter.removeRouter(TheRouterViewCApi.patternString)
344344

345345
### 如何让 OC 类也享受到 Swift 路由
346346

347-
这是一个 OC 类的界面,实现路由的跳转需要继承 OC 类,并实现 TheRouterAble 协议即可
347+
这是一个 OC 类的界面,实现路由的跳转需要实现 TheRouterableProxy 协议即可
348348

349349
```Swift
350350
@interface TheRouterBController : UIViewController
@@ -370,7 +370,7 @@ TheRouter.removeRouter(TheRouterViewCApi.patternString)
370370
}
371371

372372
+ (NSUInteger)priority {
373-
return 1;
373+
return TheRouterPriorityDefault;
374374
}
375375

376376
+ (id)registerActionWithInfo:(NSDictionary<NSString *, id> *)info {

TheRouter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'TheRouter'
11-
s.version = '1.1.5'
11+
s.version = '1.1.6'
1212
s.summary = 'TheRouter一个用于模块间解耦和通信,基于Swift协议进行动态懒加载注册路由与打开路由的工具。同时支持通过Service-Protocol寻找对应的模块,并用 protocol进行依赖注入和模块通信。'
1313

1414
# This description is used to generate tags and improve search results.

0 commit comments

Comments
 (0)