UIView(LookbackConcealing)

Extends Class:
UIView
Declared In:

Introduction

Lookback-specific extenions to UIView.



Properties

lookback_shouldBeConcealedInRecordings

lookback_shouldBeConcealedInRecordings


@property(nonatomic) BOOL lookback_shouldBeConcealedInRecordings; 
Discussion

If set to YES, the receiver will be covered by a red rectangle in recordings you make with Lookback. This is useful for hiding sensitive user data. Secure text fields are automatically concealed when focused.

@example

                - (void)viewDidLoad {
                        if([Lookback_Weak lookback]) { // don't set lookback properties if lookback isn't available
                                self.userEmailLabel.lookback_shouldBeConcealedInRecordings = YES;
                        }
                        ...
                }