点击图(HeatMap)
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
//初始化 SDK 之后,开启点击图
[[SensorsAnalyticsSDK sharedInstance] enableHeatMap];- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
if ([[SensorsAnalyticsSDK sharedInstance] handleSchemeUrl:url]) {
return YES;
}
return NO;
}//开启 MainController 页面的点击图
[[SensorsAnalyticsSDK sharedInstance] addHeatMapViewControllers:[NSArray arrayWithObject:@"MainController"]];