LookbackRecordingSession

Includes:
<Foundation/Foundation.h>
<Lookback/LookbackRecordingOptions.h>

Introduction

Represents a recording currently being in progress. You can use it to read the options that were used to start the recording, and to stop the recording.



Functions

property(nonatomic, copy)
property(nonatomic, readonly, copy)

property(nonatomic, copy)


@property(
    nonatomic,
    copy) NSString *name;  
Discussion

The name of the recording. The name can be modified by the user on the Preview screen, but may also be set programmatically using this property.

Note:

You can only set this property up until the point where "Upload" is pressed in Preview, or if preview is disabled, the property must be set before the recording stops.


property(nonatomic, readonly, copy)


@property (
    nonatomic,
    readonly,
    copy) LookbackRecordingOptions *options;  
Discussion

The options used to start the recording. Modifying these options during recording leads to undefined behavior.


Methods

+stopRecording

stopRecording


- (void)stopRecording;  
Discussion

Stop the recording. This is equivalent to saying [LookbackRecorder sharedRecorder].recording = NO;.