LookbackRecorder(LookbackMetadata)

Extends Class:
Declared In:

Introduction

View tracing API.



Methods

-enteredView:
-exitedView:
-logEvent:eventInfo:

enteredView:


- (void)enteredView:(NSString*)viewIdentifier; 
Parameters
viewIdentifier

Unique human readable identifier for a specific view

Discussion

If you are not using view controllers, or if automaticallyRecordViewControllerNames is NO, and you still want to track the user's location in your app, call this method whenever the user enters a new distinct view within your app.


exitedView:


- (void)exitedView:(NSString*)viewIdentifier; 
Parameters
viewIdentifier

Unique human readable identifier for a specific view

Discussion

Like enteredView:, but for when the user exists the view.

See


logEvent:eventInfo:


- (void)logEvent:(NSString*)event eventInfo:(NSString*)eventInfo; 
Parameters
event

The name of the event: this is the string that will show up on the timeline.

eventInfo

Additional information about the event, for example error code, interaction variation, etc.

Discussion

*