Wuyx
2017-01-11 96283659199d867f5ec4cd1168d60e05baa36011
commit | author | age
dcdc07 1 //
W 2 //  WAITrack.h
3 //  WASdkIntfUI
4 //
5 //  Created by GHW-T-01 on 16/3/1.
6 //  Copyright © 2016年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10
11 @interface WAITrack : NSObject
12 @property(strong,nonatomic)NSMutableDictionary *params;
13 @property(nonatomic)double value;
14 @property(copy,nonatomic)NSString* eventName;
15
16 -(void)initTracker;
17 -(void)trackWithEventName:(NSString *const)eventName valueToSum:(double)value params:(NSDictionary*)params;
18 -(void)autoTriggerAfterPayment:(BOOL)isAuto;
19 -(BOOL)getAutoTriggerAfterPayment;
20 -(NSString*)getCollectionInfo;
21
22
23 -(void)eventNameTransfer:(NSString *)eventName;
24 /**
25  *  安装游戏
26  */
27 -(void)launch;
28 /**
29  *  打开游戏
30  */
31 -(void)startUp;
32 /**
33  *  注册账号
34  */
35 -(void)register_;
36 /**
37  *  登录游戏
38  */
39 -(void)login;
40 /**
41  *  点击充值
42  */
43 -(void)initiatedPayment;
44 /**
45  *  充值完成
46  */
47 -(void)payment;
48 /**
49  *  点击购买
50  */
51 -(void)initiatedPurchase;
52 /**
53  *  购买完成
54  */
55 -(void)purchase;
56 /**
57  *  在线时长
962836 58  *  @param type 0->开启,1->关闭
dcdc07 59  */
962836 60 -(void)session:(int)type;
dcdc07 61 /**
W 62  *  等级或分数
63  */
64 -(void)levelAchieve;
65 /**
66  *  加入购物车
67  */
68 -(void)addToCart;
69 /**
70  *  兴趣标记/愿望
71  */
72 -(void)addToWishlist;
73 /**
74  *  搜索内容
75  */
76 -(void)search;
77 /**
78  *  使用信用点消费
79  */
80 -(void)spentCredits;
81 /**
82  *  完成解锁事件
83  */
84 -(void)achievementUnlocked;
85 /**
86  *  追踪内容查看事件
87  */
88 -(void)contentView;
89 /**
90  *  分享事件
91  */
92 -(void)share;
93 /**
94  *  邀请事件
95  */
96 -(void)invite;
97 /**
98  *  重新连接到游戏
99  */
100 -(void)reEngage;
101 /**
102  *  更新游戏
103  */
104 -(void)update;
105 /**
106  *  打开推送通知
107  */
108 -(void)openedFromPushNotification;
109 /**
110  *  创建角色
111  */
112 -(void)userCreate;
113 /**
114  *  用户资料更新
115  */
116 -(void)userInfoUpdate;
117 /**
118  *  玩家任务统计
119  */
120 -(void)taskUpdate;
121 /**
122  *  货币状况变更
123  */
124 -(void)goldUpdate;
125 /**
126  * 用户资料初始化
127  */
128 -(void)userInfoInit;
129 /**
130  *  导入用户事件
131  */
132 -(void)userImport;
133 /**
134  *  自定义事件
135  */
136 -(void)custom;
137
138 @end