LookbackRecorder.h

Introduction

The LookbackRecorder gives you low-level access to the UX recorder used by Participate. It records your screen and camera, and then uploads it to https://lookback.io for further study. Use this API to perform advanced Lookback features, such as diary studies or generic feedback recording.



Classes

LookbackRecorder

Categories

LookbackRecorder(Debugging)
LookbackRecorder(LookbackDeprecated)
LookbackRecorder(LookbackMetadata)
LookbackRecorder(LookbackRecording)
LookbackRecorder(LookbackUI)
UIView(LookbackConcealing)
UIViewController(LookbackViewIdentifier)


Macro Definitions

LookbackRecorder_Weak

LookbackRecorder_Weak


Discussion

If you only want to use LookbackRecorder in builds sent to testers (e g by using the CocoaPods :configurations=> feature), you need to avoid both linking with Lookback.framework and calling any Lookback code (since that would create a linker error). By making all your calls to Lookback_Weak instead of Lookback, your calls will be disabled when not linking with Lookback, and you thus avoid linker errors.

@example

        [LookbackRecorder_Weak setupWithAppToken:@"<MYAPPTOKEN>"];
        [LookbackRecorder_Weak sharedRecorder].shakeToRecord = YES;
        
        [[LookbackRecorder_Weak sharedRecorder] enteredView:@"Settings"];