Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
GMPhobos
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
GMPhobos
Commits
0ac7c414
Commit
0ac7c414
authored
Sep 08, 2017
by
汪洋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修正注释
parent
6e44d469
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
29 deletions
+6
-29
Phobos.h
Pod/Classes/Phobos.h
+3
-7
Phobos.m
Pod/Classes/Phobos.m
+2
-10
PhobosPVProtocol.h
Pod/Classes/PhobosPVProtocol.h
+1
-2
PhobosUtil.h
Pod/Classes/PhobosUtil.h
+0
-1
PhobosUtil.m
Pod/Classes/PhobosUtil.m
+0
-9
No files found.
Pod/Classes/Phobos.h
View file @
0ac7c414
...
...
@@ -15,10 +15,10 @@
/**
* @brief 开启Phobos统计,默认以BATCH方式发送log.
*
* @param appName
* @param channelId
* @param appName
通常由数据端与客户端一起确认的区分不同app的名字
* @param channelId
发布渠道
*
* @return
* @return
Phobos实例
*
* @since 0.0.1
*/
...
...
@@ -43,8 +43,6 @@
/**
* @brief 设置是否打印sdk的log信息,默认不开启
*
* @param value 设置为YES,phobos SDK 会输出log信息,记得release产品时要设置回NO.
*
* @since 0.0.1
*/
@property
(
assign
,
nonatomic
)
BOOL
logEnabled
;
...
...
@@ -52,7 +50,6 @@
/**
* @brief 设置当前登录用户的ID,如果没有默认为@""
*
* @param userId
*
* @since 0.0.2
*/
...
...
@@ -63,7 +60,6 @@
*
* @brief 用户当前的城市id
*
* @param currentCityId
*
* @since 0.2.7
*/
...
...
Pod/Classes/Phobos.m
View file @
0ac7c414
...
...
@@ -149,8 +149,6 @@ static NSString *sdkVersion = @"110";
/**
* @brief 应用打开时的处理
*
* @param sender
*
* @since 0.0.1
*/
-
(
void
)
handleAppFinishLaunch
:
(
id
)
sender
{
...
...
@@ -162,8 +160,6 @@ static NSString *sdkVersion = @"110";
/**
* @brief 应用进入前台的处理
*
* @param sender
*
* @since 0.0.1
*/
-
(
void
)
handleAppInForeground
:
(
id
)
sender
{
...
...
@@ -177,8 +173,6 @@ static NSString *sdkVersion = @"110";
/**
* @brief 应用进入后台的处理
*
* @param sender
*
* @since 0.0.1
*/
-
(
void
)
handleAppInBackgound
:
(
id
)
sender
{
...
...
@@ -282,7 +276,7 @@ static NSString *sdkVersion = @"110";
-
(
void
)
onPVStart
:
(
UIResponder
<
PhobosPVProtocol
>
*
)
page
{
// 必须在此处调用一下referer,因为onControllerStart
[
page
initReferer
];
[
page
initReferrerIdIfNil
];
[
page
initReferrerIdIfNil
];
page
.
inTime
=
[
PhobosUtil
currentTime
];
}
...
...
@@ -331,8 +325,6 @@ static NSString *sdkVersion = @"110";
/**
* @brief 将埋点时间封装成词典数据
*
* @return
*
* @since 0.0.1
*/
-
(
NSDictionary
*
)
prepareDictionaryForEvent
:
(
NSString
*
)
eventId
attributes
:
(
NSDictionary
*
)
attributes
{
...
...
@@ -434,7 +426,7 @@ static NSString *sdkVersion = @"110";
让sendArray方法负责发送,数据一旦转移到缓存区,就把原有的数据干掉。
@author zhaiguojun 16-10-17 in (null)
@param array 参数
@param
now
是否立即清楚缓存
@param
clean
是否立即清楚缓存
*/
-
(
void
)
sendArray
:
(
NSArray
*
)
array
cleanCacheRightNow
:
(
BOOL
)
clean
{
@try
{
...
...
Pod/Classes/PhobosPVProtocol.h
View file @
0ac7c414
...
...
@@ -31,11 +31,10 @@
* @author 翟国钧 in 16-02-25 19:02:32
*
* @brief 获取前一个页面的pageName。
* 只读,以后如果业务涉及到referer的set方法,那么再升级Phobos,此时先不做过多考虑 by wangyang at 2017-2-7
*
* @since 5.9.1
*/
@property
(
nonatomic
,
readonl
y
,
nonnull
)
NSString
*
referer
;
@property
(
nonatomic
,
cop
y
,
nonnull
)
NSString
*
referer
;
/**
当前VC.view 显示的时候的时间戳
...
...
Pod/Classes/PhobosUtil.h
View file @
0ac7c414
...
...
@@ -26,7 +26,6 @@ typedef void (^SendDataSuccessBlock)(NSInteger code);
/**
* @brief 上传数据
*
* @param data,success
*
* @since 0.0.1
*/
...
...
Pod/Classes/PhobosUtil.m
View file @
0ac7c414
...
...
@@ -130,10 +130,6 @@
/**
* @brief 将对象转成JSON格式数据
*
* @param obj
*
* @return
*
* @since 0.0.1
*/
+
(
NSData
*
)
encodeJSON
:(
id
)
obj
{
...
...
@@ -144,9 +140,6 @@
/**
* @brief 获取当前时间的毫秒数
*
* @return
*
* @since 0.0.1
*/
+
(
NSString
*
)
currentTime
{
...
...
@@ -159,8 +152,6 @@
/**
* @brief 获取当前APP的版本号
*
* @return
*
* @since 0.0.1
*/
+
(
NSString
*
)
getAppVersion
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment