#iOS Google Analytics and Flurry Tracker
This is a very simple helper track GAI and Flurry screen views and events quickly. Of course, you can customize based on marketing plan to increase tracking precision.
Before use the Tracker, you need to initialize then, the best place to do this is in your AppDelegate file, at application:didFinishLaunchingWithOptions:launchOptions
callback.
[[Tracker shared] start];
// To track screen, use the snippet below at "viewDidAppear" callback of your View Controller.
[[Tracker shared] trackScreenView:@"MyScreenName"];
// To track events, use the example below
[[Tracker shared] trackActionInScreenWithName:@"Screen Name" category"Category" action:@"Action" label:@"Label" value:0];