Track General Event
+ (void)trackEvent:(NSString *)eventName andWithParam:(NSDictionary *)paramDict;// Without parameters
[YourSDKClass trackEvent:@"user_login" andWithParam:nil];
// With parameters
NSDictionary *params = @{@"method": @"email", @"user_status": @"active"};
[YourSDKClass trackEvent:@"user_login" andWithParam:params];Last updated