TestsTested | ✓ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Apr 2016 |
Maintained by Yourtion Guo.
Log event count and event time in iOS
The preferred way of installation is via CocoaPods. Just add
pod 'EventLogger'
and run pod install. It will install the most recent version of EventLogger.
Import header file where you want to log event:
#import "EventLogger.h"
[[EventLogger sharedInstance] addCountEventWithTag:@"click_clean"];
Start Loging EventCount2
;
[[EventLogger sharedInstance] addCountEventWithTag:@"EventCount2"];
Loging EventCount2
time from event begining;
[[EventLogger sharedInstance] addTimeEventPoint:@"e12" withTag:@"TimeEven1" andInfo:nil timeFromPoint:@nil];
Loging EventCount2
time from point e12
;
[[EventLogger sharedInstance] addTimeEventPoint:@"e13" withTag:@"TimeEven1" andInfo:nil timeFromPoint:@"e12"];
That's it! Have fun with EventLogger!