Add AnalyticsScreenTimer and track more screens.

Update Analytics with new methods in MXAnalyticsDelegate.
This commit is contained in:
Doug
2021-12-02 14:25:45 +00:00
parent b7a4e5c0d3
commit 47348b7f34
42 changed files with 513 additions and 42 deletions
@@ -177,6 +177,12 @@
[self updateFooterViewVisibility];
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
[self.screenTimer start];
}
- (void)viewDidLayoutSubviews
{
[super viewDidLayoutSubviews];
@@ -201,6 +207,12 @@
}
}
- (void)viewDidDisappear:(BOOL)animated
{
[super viewDidDisappear:animated];
[self.screenTimer stop];
}
#pragma mark -
/**