Skip to main content
Version: iOS SDK

Session Replay

Session Replay lets you record and replay real user sessions from your iOS app directly in the Screeb platform.

Requirements

Session Replay is available from recent Screeb iOS SDK versions.

Enable Session Replay

Session Replay can be enabled from your workspace settings.

// Start recording
Screeb.sessionReplayStart()

// Stop recording
Screeb.sessionReplayStop()

Privacy: Masking Content

Screeb automatically masks password fields and other sensitive content detected by heuristics. The masking helpers below are UIKit extension methods available on UIView.

Mask specific views

// Mask text content in a view
myView.screebMaskText()

// Exclude a view entirely from capture
myView.screebNoCapture()

IAM Product Tours: Stable Element IDs

Use stable Screeb element IDs for IAM targeting when you need an identifier that remains meaningful across app restarts and UI refactors. The screebId() helper is also a UIKit extension method available on UIView.

// Set a stable element ID for IAM targeting
myButton.screebId("checkout_button")