LookbackRecorder(LookbackUI)

Extends Class:
Declared In:

Introduction

Lookback user interface API.



Properties

feedbackBubbleBackgroundColor
feedbackBubbleForegroundColor
feedbackBubbleIcon
feedbackBubbleInitialPosition
feedbackBubbleVisible
presentedRecorder
recorderVisible
shakeToRecord
showIntroductionDialogs

feedbackBubbleBackgroundColor


@property(nonatomic) UIColor *feedbackBubbleBackgroundColor; 
Discussion

The feedback bubble will pick up your navigation bar's appearance proxy's bar tint. Override it with this property.


feedbackBubbleForegroundColor


@property(nonatomic) UIColor *feedbackBubbleForegroundColor; 
Discussion

The feedback bubble will pick up your navigation bar's appearance proxy's foreground tint color. Override it with this property.


feedbackBubbleIcon


@property(nonatomic) UIImage *feedbackBubbleIcon; 
Discussion

You can override the icon of the feedback bubble. It will be tinted with foregroundColor.


feedbackBubbleInitialPosition


@property(nonatomic) CGPoint feedbackBubbleInitialPosition; 
Discussion

Where on the screen should the bubble appear? Use positive values as insets from top-left, or negative values for insets from bottom-right.


feedbackBubbleVisible


@property(nonatomic) BOOL feedbackBubbleVisible; 
Discussion

Whether the feedback bubble (from "shakeToRecord") is currently shown. Defaults to NO, but you can set it to YES immediately on app start to default to it showing, e g.

KVO compliant √


presentedRecorder


@property(nonatomic,
    readonly) LookbackRecordingViewController *presentedRecorder; 
Discussion

The currently presented LookbackRecordingViewController. nil if recorderVisible is NO.


recorderVisible


@property(nonatomic) BOOL recorderVisible; 
Discussion

Whether the built-in LookbackRecordingViewController is currently being shown, either from pressing the feedback bubble or from setting this property to YES.


shakeToRecord


@property(nonatomic) BOOL shakeToRecord; 
Discussion

If enabled, shows the feedback bubble when you shake the device. Tapping this bubble will show the LookbackRecordingViewController and let the user record. Default NO.


showIntroductionDialogs


@property(nonatomic) BOOL showIntroductionDialogs; 
Discussion

*