Commit 53929431fada380393e7dff4358d9c5ed0ad0742

Authored by yanglingyu
1 parent e0f66b27

0.6.8

CNLiveCMineModule.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveCMineModule'
11   - s.version = '0.6.7'
  11 + s.version = '0.6.8'
12 12 s.summary = '网家家C端个人中心'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveCMineModule/Classes/CNLiveCMineModule.h
... ... @@ -25,6 +25,8 @@ NS_ASSUME_NONNULL_BEGIN
25 25 /// @param name 国家名
26 26 /// @param code 符号
27 27 + (void)backMessageFromSelectCountries:(NSString *)name countryCode:(NSString *)code;
  28 +
  29 ++ (void)pushVCWithInteDetailView;
28 30 @end
29 31  
30 32 NS_ASSUME_NONNULL_END
... ...
CNLiveCMineModule/Classes/CNLiveCMineModule.m
... ... @@ -30,6 +30,11 @@
30 30 [[CNLiveCMineModule navigationViewController] pushViewController:inteView animated:YES];
31 31 }
32 32  
  33 ++(void)pushVCWithInteDetailView{
  34 + CNLiveCMineInteDetailViewController * inteView = [[CNLiveCMineInteDetailViewController alloc] initWithInte:@"0"];
  35 + [[CNLiveCMineModule navigationViewController] pushViewController:inteView animated:YES];
  36 +}
  37 +
33 38 + (UIViewController *)showMineView
34 39 {
35 40 CNLiveMineVC *vc = [[CNLiveMineVC alloc] init];
... ...