当屏幕被录制或应用程序处于非活跃状态时,编辑内容
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()
}
}