Commit 36c3a5970cdab5e2c065bf96e4dc8bcfd67e4078

Authored by yanglingyu
1 parent 1497fbd2

修复闪退问题

CNLiveCMineModule.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveCMineModule'
11   - s.version = '0.1.9'
  11 + s.version = '0.2.0'
12 12 s.summary = '网家家C端个人中心'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveCMineModule/Classes/CNOrder/ViewController/CNMineOrderController.m
... ... @@ -324,8 +324,6 @@
324 324 if (_vc == nil) {
325 325 _vc = [[NSClassFromString(@"DSOrderListViewController") alloc]init];
326 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 328 return _vc;
331 329  
... ...