Skip to main content

How to mark content as private using privacySensitive()

About 2 minSwiftSwiftUIArticle(s)bloghackingwithswift.comcrashcourseswiftswiftuixcodeappstore

How to mark content as private using privacySensitive() 관련

SwiftUI by Example

Back to Home

How to mark content as private using privacySensitive() | SwiftUI by Example

How to mark content as private using privacySensitive()

Updated for Xcode 15

New in iOS 15

SwiftUI lets us mark some parts of our view as containing sensitive information, which in practice allows us to hide or show it more easily using redaction. To use this feature in your code, first add the privacySensitive() modifier to any views that should be hidden, then apply the .redacted(reason: .privacy) modifier at a higher place in your view hierarchy.

For example, this hides the user's credit card number if the view is being displayed in a non-private context:

struct ContentView: View {
    var body: some View {
        VStack {
            Text("Card number")
                .font(.headline)

            Text("1234 5678 9012 3456")
                .privacySensitive()
        }
    }
}

Download this as an Xcode projectopen in new window

The text “Card Number” over a long string of digits.
The text “Card Number” over a long string of digits.

By default, privacy sensitive context is masked out with a gray box, but you can also provide custom layout by reading the redaction reasons from the environment:

struct ContentView: View {
    @Environment(\.redactionReasons) var redactionReasons

    var body: some View {
        VStack {
            Text("Card number")
                .font(.headline)

            if redactionReasons.contains(.privacy) {
                Text("[HIDDEN]")
            } else {
                Text("1234 5678 9012 3456")
            }
        }
    }
}

Download this as an Xcode projectopen in new window

The text “Card Number” over the placeholder text “[HIDDEN]”.
The text “Card Number” over the placeholder text “[HIDDEN]”.

Sometimes the system will apply privacy redaction automatically, such as if your widget appears on the Lock Screen (when the user swipes to the left), or if they have their Apple Watch set to always-on and your app is visible – these are both good places where you should mark things as being privacy sensitive.

Similar solutions…
Article(s) > How to mark content as a placeholder using redacted()

How to mark content as a placeholder using redacted()
Article(s) > How to render Markdown content in text

How to render Markdown content in text
Article(s) > How to create scrolling pages of content using tabViewStyle()

How to create scrolling pages of content using tabViewStyle()
Article(s) > How to fix “Missing argument for parameter 'content' in call”

How to fix “Missing argument for parameter 'content' in call”
How to tell the user that no content is available | SwiftUI by Example

How to tell the user that no content is available

이찬희 (MarkiiimarK)
Never Stop Learning.