I'm trying this code to track which row of a table was selected using google analytics
NSString *label=[NSString stringWithFormat:@"Section#%i",indexPath.section]; [[GAI sharedInstance].defaultTracker trackEventWithCategory:@"HOME" withAction:@"Select Row" withLabel:label withValue:[NSNumber numberWithInt:indexPath.row]];
But I always get error "No known instance method for selector trackEventWithCategory:withAction:withLabel:with Value:"
Can someone advise me: I want to keep track of which row of the table is selected so that the event can be generated using Google Analytics.
source share