使用 Heatma.ps SDK 无法查看热图

发布于 2024-12-13 20:13:37 字数 467 浏览 1 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬心 2024-12-20 20:13:37

要查看热图,您需要将 heatmaps 对象的 showMenu 属性设置为 YES

-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    //...
    heatmaps = [[Heatmaps alloc] init];
    heatmaps.showDebug = YES;

    heatmaps.showMenu = YES;

    [heatmaps start];

    //...
}

观看以下截屏视频:"查看热图"

To see heatmaps you need to set showMenu property of heatmaps object to YES

-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    //...
    heatmaps = [[Heatmaps alloc] init];
    heatmaps.showDebug = YES;

    heatmaps.showMenu = YES;

    [heatmaps start];

    //...
}

Watch the following screencast: "Viewing heatmaps"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文