I tested the Heatmaps SDK and I wanted to know if there is a setting or way to show heatmaps on all visible elements at the same time? Currently, I can view one item at a time, as shown below.
This is my setup and below are snapshots of the results:
- (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];


source share