Perhaps there is no sending?
After initializing the tracker:
[[GAI sharedInstance] trackerWithTrackingId:@"UA-xxxx-x"];
Try this example:
id<GAITracker> tracker = [[GAI sharedInstance] defaultTracker];
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
@"appview", kGAIHitType, @"Home Screen", kGAIScreenName, nil];
[tracker send:params];
source
share