I am using Appsee and using their video recording in my app.
I show an alert with confidential information. I know that I can hide the alert in appsee while using
+(void)markViewAsSensitive:(UIView*)view
and it's working. However, this API doesn't remove the title and the message for the sensitive alert from the timeline. See the attached screenshot.
You should contact Appsee's support at support@appsee.com.
Meanwhile, you can use [Appsee pause];
before the alert and [Appsee resume];
after the alert. See docs.
In order to be aware of the alert, you can send a custom event with the details you want to be displayed in Appsee via +(void)addEvent:(NSString*)eventName
. See docs.