Commit 93a426070a16a99d0ece9795051f69240da60208

Authored by liushiyu
1 parent 7af278e8

0.0.7

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.0.6' 11 + s.version = '0.0.7'
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/CNLiveCMineProtocol.h
@@ -24,7 +24,7 @@ NS_ASSUME_NONNULL_BEGIN @@ -24,7 +24,7 @@ NS_ASSUME_NONNULL_BEGIN
24 -(void)pushCMineInteContentForCMainCustomFunctionVCParam:(NSDictionary *)param CurrentVC:(UIViewController *)currentVC; 24 -(void)pushCMineInteContentForCMainCustomFunctionVCParam:(NSDictionary *)param CurrentVC:(UIViewController *)currentVC;
25 25
26 /// 我的积分跳转主工程我的客服界面 26 /// 我的积分跳转主工程我的客服界面
27 --(void)pushCMineInteContentForCMainPlatFromCustomerMedthod; 27 +-(void)pushCMineInteContentForCMainPlatFromCurrentVC:(UIViewController *)currentVC;
28 28
29 /// 我的积分调用主工程中的友盟统计 29 /// 我的积分调用主工程中的友盟统计
30 -(void)pushCMineInteContentForCMainUMengStatisticaMedthod; 30 -(void)pushCMineInteContentForCMainUMengStatisticaMedthod;
CNLiveCMineModule/Classes/inte/Controller/CNLiveCMineInteViewController.m
@@ -188,7 +188,7 @@ @@ -188,7 +188,7 @@
188 [[CNLiveCMineService shareMineProtocol] pushCMineInteContentForCMainWebViewWithURL:@"" statue:CNLiveCMineIntePushWebViewStatueRule]; 188 [[CNLiveCMineService shareMineProtocol] pushCMineInteContentForCMainWebViewWithURL:@"" statue:CNLiveCMineIntePushWebViewStatueRule];
189 } 189 }
190 if (headerClick == CNLiveCMineInteHeaderClickService) { 190 if (headerClick == CNLiveCMineInteHeaderClickService) {
191 - [[CNLiveCMineService shareMineProtocol] pushCMineInteContentForCMainPlatFromCustomerMedthod]; 191 + [[CNLiveCMineService shareMineProtocol] pushCMineInteContentForCMainPlatFromCurrentVC:weakSelf];
192 } 192 }
193 }]; 193 }];
194 }; 194 };
Example/CNLiveCMineModule/CNLiveCMineViewModuleImpl.m
@@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
11 @implementation CNLiveCMineViewModuleImpl 11 @implementation CNLiveCMineViewModuleImpl
12 12
13 /// 我的积分跳转主工程我的客服界面 13 /// 我的积分跳转主工程我的客服界面
14 --(void)pushCMineInteContentForCMainPlatFromCustomerMedthod 14 +-(void)pushCMineInteContentForCMainPlatFromCurrentVC:(UIViewController *)currentVC
15 { 15 {
16 16
17 } 17 }