Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ You can choose which type of view you want to mask or unmask by using the `maske
Let's say you have a custom view that you want to mask and a `UILabel` subclass (which normally would be masked) that you don't want to mask. You can set the options like this:

```swift
options.experimental.sessionReplay.maskedViewClasses = [MyCustomView.self]
options.experimental.sessionReplay.unmaskedViewClasses = [MyCustomLabel.self]
options.sessionReplay.maskedViewClasses = [MyCustomView.self]
options.sessionReplay.unmaskedViewClasses = [MyCustomLabel.self]
```

## Mask by View Instance
Expand Down
Loading