The SDK by default opts-in users for UXCam recording on app installs. You can now disable and enable recording at runtime by the following API
Opt out a User
This methods stops and deletes the session in progress (if any) and disables the recording of future sessions from this user
+(void) optOut();
UXCam.optOut();
UXCam.OptOut();
UXCam.optOut();
The optIn/optOut setting resets to opt-In if the user un-installs and re-installs the app.
Opt in a User
The SDK by default opts-in users for UXCam recording on app installs. If the user has been disabled for UXCam recording by using the optOut method, you can use this method to enable recording at runtime.
+ (void) optIn();
UXCam.optIn();
UXCam.OptIn();
UXCam.optIn();
Opt in Status
This method returns the status of the user indicating whether they are currently opted in or opted out.
+ (BOOL) optInStatus();
boolean UXCam.optInStatus();
boolean UXCam.OptInStatus();
boolean UXCam.optInStatus();