CNLiveCMineViewModuleImpl.m
1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// CNLiveCMineViewModuleImpl.m
// CNLiveCMineModule_Example
//
// Created by open on 2021/12/29.
// Copyright © 2021 杨苓玉. All rights reserved.
//
#import "CNLiveCMineViewModuleImpl.h"
@implementation CNLiveCMineViewModuleImpl
/// 我的积分跳转主工程我的客服界面
-(void)pushCMineInteContentForCMainPlatFromCurrentVC:(UIViewController *)currentVC
{
}
/// 我的积分调用主工程中的友盟统计
-(void)pushCMineInteContentForCMainUMengStatisticaMedthod
{
// [MobClick event:@"config_click_checkIn"];
}
/// 我的积分跳转主工程webView界面
/// @param url 链接地址
- (void)pushCMineInteContentForCMainWebViewWithURL:(nonnull NSString *)url statue:(CNLiveCMineIntePushWebViewStatue)statue {
}
- (void)pushCMineInteContentForCMainCustomFunctionVCParam:(nonnull NSDictionary *)param CurrentVC:(nonnull UIViewController *)currentVC {
}
/// 积分任务跳转到不同界面去完成
/// @param param 参数
-(void)pushCMineInteContentForCMainCustomFunctionVCParam:(NSDictionary *)param
{
NSLog(@"跳转不同积分任务=>%@",param);
}
@end