You need to put your code inside the tableView:didSelectRowAtIndexPath: method to track table row selection. Then you need to correctly name the category, action and label. I would recommend something like this:
NSString *label = [NSString stringWithFormat:@"Section #%i", indexPath.section]; [[GAI sharedInstance].defaultTracker trackEventWithCategory:@"Table #1" withAction:@"Select Row" withLabel:label withValue:[NSNumber numberWithInt:indexPath.row]];
Actually, you can name the category, action and label what you want. But itβs better to give them convenient names, so they are easier to find in statistics.
source share