Commit 36c3a5970cdab5e2c065bf96e4dc8bcfd67e4078
1 parent
1497fbd2
修复闪退问题
Showing
2 changed files
with
1 additions
and
3 deletions
CNLiveCMineModule.podspec
| @@ -8,7 +8,7 @@ | @@ -8,7 +8,7 @@ | ||
| 8 | 8 | ||
| 9 | Pod::Spec.new do |s| | 9 | Pod::Spec.new do |s| |
| 10 | s.name = 'CNLiveCMineModule' | 10 | s.name = 'CNLiveCMineModule' |
| 11 | - s.version = '0.1.9' | 11 | + s.version = '0.2.0' |
| 12 | s.summary = '网家家C端个人中心' | 12 | s.summary = '网家家C端个人中心' |
| 13 | 13 | ||
| 14 | # This description is used to generate tags and improve search results. | 14 | # This description is used to generate tags and improve search results. |
CNLiveCMineModule/Classes/CNOrder/ViewController/CNMineOrderController.m
| @@ -324,8 +324,6 @@ | @@ -324,8 +324,6 @@ | ||
| 324 | if (_vc == nil) { | 324 | if (_vc == nil) { |
| 325 | _vc = [[NSClassFromString(@"DSOrderListViewController") alloc]init]; | 325 | _vc = [[NSClassFromString(@"DSOrderListViewController") alloc]init]; |
| 326 | _vc.view.frame = CGRectMake(0, kVerticalStatusHeight+44, KScreenWidth, KScreenHeight-(kVerticalStatusHeight+44)); | 326 | _vc.view.frame = CGRectMake(0, kVerticalStatusHeight+44, KScreenWidth, KScreenHeight-(kVerticalStatusHeight+44)); |
| 327 | - [_vc setValue:0 forKey:@"display"]; | ||
| 328 | - [_vc setValue:@(NO) forKey:@"isNeedNavigationBar"]; | ||
| 329 | } | 327 | } |
| 330 | return _vc; | 328 | return _vc; |
| 331 | 329 |