I am new to Google Analytics. In my project i have to send multiple dimensions for an event. Actually i need to raise an event with two dimensions, event raises twice because i am raising the event individually for each dimension. I googled for multiple dimensions and i found this, here i'm lil confused to convert it in to iOS (i mean in Objective-C). Here is my code which i call for each dimension.
[tracker send:[[[GAIDictionaryBuilder createEventWithCategory:[eventDict valueForKey:@"category"]
action:[eventDict valueForKey:@"action"]
label:[eventDict valueForKey:@"label"]
value:[eventDict valueForKey:@"value"]]
set:nameStr forKey:[GAIFields customDimensionForIndex:indexval]] build]];
Please suggest me a best solution for mutiple dimensions for an event.