Event Overview
Watching Events
#if DEBUG
CriticalMoments.sharedInstance().setLogEvents(true)
#endif#ifdef DEBUG
[CriticalMoments.sharedInstance setLogEvents:true];
#endifSending Events
// In your imports section add:
import CriticalMoments
// Send a recommended event
CriticalMoments.sharedInstance().sendEvent("signed_in")
// Send a custom event
CriticalMoments.sharedInstance().sendEvent("created_list")// In your imports section add:
@import CriticalMoments;
// Send a well known event
[CriticalMoments.sharedInstance sendEvent:@"signed_in"];
// Send a custom event
[CriticalMoments.sharedInstance sendEvent:@"created_list"];Using Events
Last updated