屏幕截图编辑

当屏幕被录制或应用程序处于非活跃状态时,编辑内容

用法

import ScreenCaptureRedaction

struct MyView: View {
    var body: some View {
        ScreenCaptureRedactionView {
            Text("Really really sensitive information")
        }
    }
}

或者,

import ScreenCaptureRedaction

struct MyView: View {
    var body: some View {
        Text("Really really sensitive information")
            .redactWhenScreenRecorded()
    }
}