반응형

 

Hacking with Swift 사이트의 강좌 번역본입니다.

 

[원문 : https://www.hackingwithswift.com/quick-start/swiftui/how-to-create-secure-text-fields-using-securefield]

 

How to create secure text fields using SecureField

 

SwiftUI의 SecureField는 문자들이 개인정보보호를 위해 가려진것을 제외하고 TextField와 거의 동일하게 동작합니다. 바인딩하는 기본 값은 여전히 일반 문자열이므로, 필요에 따라 확인할 수 있습니다.

 

다음은 로컬 @State 프로퍼티에 바인딩하는 SecureField를 만들어서 입력된 것을 보여줄수 있는 예제입니다.

struct ContentView: View {
    @State private var password: String = ""

    var body: some View {
        VStack {
            SecureField("Enter a password", text: $password)
            Text("You entered: \(password)")
        }
    }
}

 

반응형
Posted by 까칠코더
,