LookbackRecorder

Superclass:
NSObject
Declared In:

Introduction

API for Lookback recording, configuration and uploading. This class can record and upload user research and feedback from your app. It captures the screen, front-facing camera, microphone, and tons of metadata about your app during the recording session.

You must configure the recorder with an SDK token via +[Lookback setupWithAppToken:] before being used.

Once configured, you can:



Methods

+setupWithAppToken:
+sharedRecorder

setupWithAppToken:


+ (void)setupWithAppToken:(NSString*)teamToken; 
Parameters
teamToken

A string identifying your team, received from your team settings at http://lookback.io

Discussion

Mandatory setup method which configures LookbackRecorder for your application.

In your applicationDidFinishLaunching: or similar, call this method to prepare LookbackRecorder for use, using the Team Token from your integration guide at lookback.io. You can call this method again later to change the token.


sharedRecorder


+ (instancetype)sharedRecorder; 
Discussion

Shared instance of LookbackRecorder to use from your code. You must call +[LookbackRecorder setupWithAppToken:] before calling this method.