我在我的 iPhone 应用程序中成功安装了heatma.ps SDK ( https://heatma.ps )。它会跟踪所有的触摸和手势,但是当我摇晃设备时,我无法查看热图。知道为什么吗?没有日志,只是没有显示。
这就是我设置heatmaps
对象的方式。
-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//...
heatmaps = [[Heatmaps alloc] init];
heatmaps.showDebug = YES;
[heatmaps start];
//...
}