使用 Heatma.ps SDK 无法查看热图
我在 iPhone 应用程序中成功安装了 heatma.ps SDK (https://heatma.ps) 。它会跟踪所有触摸和手势,但当我摇动设备时无法查看热图。知道为什么吗?没有日志,只是不显示。
这就是我设置 heatmaps
对象的方式。
-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//...
heatmaps = [[Heatmaps alloc] init];
heatmaps.showDebug = YES;
[heatmaps start];
//...
}
I successfully installed heatma.ps SDK (https://heatma.ps) in my iPhone application. It tracks all the touches and gestures, but I can't view a heatmap when I shake my device. Any idea why? There is no log, it just doesn't show up.
This is how I setup my heatmaps
object.
-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//...
heatmaps = [[Heatmaps alloc] init];
heatmaps.showDebug = YES;
[heatmaps start];
//...
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要查看热图,您需要将
heatmaps
对象的showMenu
属性设置为YES
观看以下截屏视频:"查看热图"
To see heatmaps you need to set
showMenu
property ofheatmaps
object toYES
Watch the following screencast: "Viewing heatmaps"