【发布时间】:2011-11-08 08:56:14
【问题描述】:
我正在测试Heatmaps SDK,我想知道是否有一种设置或方法可以同时在所有可见元素上显示热图?目前我可以一次查看一个元素,如下所示。
这是我的设置,下面是结果图片:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UIViewController *rootVC = _window.rootViewController;
self.window = [[HMUIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.rootViewController = rootVC;
heatmaps = [[Heatmaps alloc] init];
heatmaps.showDebug = YES;
heatmaps.showMenu = YES;
[heatmaps start];
//...
return YES;
}
【问题讨论】: