Commit 9470b6c9 authored by wangjun's avatar wangjun

修改埋点所需的参数

parent 82d88df3
...@@ -12,6 +12,10 @@ ...@@ -12,6 +12,10 @@
@property (strong, nonatomic) UINavigationController *selectedNavigationController; @property (strong, nonatomic) UINavigationController *selectedNavigationController;
/**
网络状态
*/
@property (nonatomic, copy) NSString *netStatus;
/** /**
* @brief 开启Phobos统计,默认以BATCH方式发送log. * @brief 开启Phobos统计,默认以BATCH方式发送log.
...@@ -25,11 +29,6 @@ ...@@ -25,11 +29,6 @@
*/ */
+ (Phobos *)clientWithAppName:(NSString *)appName channelId:(NSString *)channelId; + (Phobos *)clientWithAppName:(NSString *)appName channelId:(NSString *)channelId;
+ (instancetype)sharedClient;
+ (void)setSharedClient:(Phobos *)client;
/** /**
* @brief 设置是否打印sdk的log信息,默认不开启 * @brief 设置是否打印sdk的log信息,默认不开启
* *
...@@ -62,7 +61,7 @@ ...@@ -62,7 +61,7 @@
- (void)setGPS:(NSDictionary *)gps; - (void)setGPS:(NSDictionary *)gps;
/** /**
网络状态
@param status status @param status status
*/ */
......
...@@ -29,7 +29,6 @@ static NSString *sdkVersion = @"110"; ...@@ -29,7 +29,6 @@ static NSString *sdkVersion = @"110";
@property (strong, nonatomic) NSString *sessionId; @property (strong, nonatomic) NSString *sessionId;
@property (strong, nonatomic) NSString *lng; @property (strong, nonatomic) NSString *lng;
@property (strong, nonatomic) NSString *lat; @property (strong, nonatomic) NSString *lat;
@property (nonatomic, copy) NSString *netStatus;
@end @end
...@@ -92,10 +91,6 @@ static NSString *sdkVersion = @"110"; ...@@ -92,10 +91,6 @@ static NSString *sdkVersion = @"110";
} }
} }
- (void)setNetStatus:(NSString *)status {
_netStatus = status;
}
- (void)handleEventAfterInit{ - (void)handleEventAfterInit{
WMCacheService *cache = [WMCacheService sharedInstance]; WMCacheService *cache = [WMCacheService sharedInstance];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment