Skip to content

Instantly share code, notes, and snippets.

@casspangell
Created November 16, 2011 19:37
Show Gist options
  • Save casspangell/1371095 to your computer and use it in GitHub Desktop.
Save casspangell/1371095 to your computer and use it in GitHub Desktop.
-(void)trackOmnitureEventInfo:(NSDictionary *)eventInfo
{
NSLog( @"TLOmnitureManager:trackOmnitureEventInfo:%@", eventInfo );
[_omAppMeasurement track:eventInfo];
}
-(void)handleNotifications:(NSNotification *)notification
{
NSMutableDictionary *mutable_d = [NSMutableDictionary dictionaryWithDictionary:notification.userInfo];
[self trackOmnitureEventInfo:mutable_d];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment