在AppDElegate.m文件中:
#import "AppDelegate.h"
#import "GAI.h"
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[GAI sharedInstance].trackUncaughtExceptions = YES;
[GAI sharedInstance].dispatchInterval = 1;
[[[GAI sharedInstance] logger]setLogLevel:kGAILogLevelVerbose];
id<GAITracker> tracker = [[GAI sharedInstance] trackerWithTrackingId:@"TrackingId"];
[GAI sharedInstance].defaultTracker = tracker;
return YES;
}
在ViewController.h
#import <UIKit/UIKit.h>
#import "GAITrackedViewController.h"
@interface FirstViewController : GAITrackedViewController
@end
在ViewController.m中
- (void)viewDidLoad {
[super viewDidLoad];
self.screenName = @"RED Screen";
}
试试看。这对我来说很好。我尝试了三个以上的应用程序。所有人都在实时工作。如果您的应用帐户是新帐户,那么您可能需要等待 24 小时或更长时间才能看到结果。有时无故显示实时数据需要时间。