lpw
2025-03-18 e7ee6f733786ee45a7360776ec2534ffdfb8ef8c
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
44
45
46
47
//
//  GHWParser.h
//  test
//
//  Created by wuyx on 16/3/3.
//  Copyright © 2016年 GHW. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import "WAComponent.h"
@interface WASdkConfigParser : NSObject<NSXMLParserDelegate>
@property(nonatomic,copy)NSMutableArray* comps;
@property(nonatomic,copy)NSMutableArray* userComps;//用户模块
@property(nonatomic,copy)NSMutableArray* payComps;//支付
@property(nonatomic,copy)NSMutableArray* trackComps;//数据收集模块
@property(nonatomic,copy)NSMutableArray* socialComps;//社交模块
@property(nonatomic,copy)NSMutableArray* apwComps;//应用墙模块
@property(nonatomic,copy)NSMutableArray* coreComps;//公共模块
@property(nonatomic,copy)NSMutableArray* hupComps;//热更新模块
@property(nonatomic,copy)NSMutableArray* pushComps;//消息推送模块
@property(nonatomic,copy)NSMutableArray* adComps;//广告模块
@property(nonatomic,copy)NSMutableArray* cscComps;//客服系统模块
@property(nonatomic,copy)NSMutableArray* adMobComps;//admob模块
 
@property(nonatomic,copy)NSString* ver;
-(void)start;
-(void)print;
+(instancetype)shareInstance;
+(NSString*)getVer;
+(NSMutableArray *)getAllComps;
+(NSMutableArray*)getUserComps;
+(NSMutableArray*)getPayComps;
+(NSMutableArray*)getTrackComps;
+(NSMutableArray*)getSocialComps;
+(NSMutableArray*)getApwComps;
+(NSMutableArray*)getCoreComps;
+(NSMutableArray*)getHupComps;
+(NSMutableArray*)getPushComps;
+(NSMutableArray*)getAdComps;
+(NSMutableArray*)getCscComps;
+(NSMutableArray*)getAdMobComps;
 
//判断模块是否存在
+(BOOL)isExistWithModule:(NSString*)module;
//判断某个模块的某个渠道是否存在
+(BOOL)isExistWithPlatform:(NSString*)platform module:(NSString*)module;
@end