반응형
Hacking with Swift 사이트의 강좌 번역본입니다.
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)")
}
}
}
반응형
'SwiftUI > Responding to events' 카테고리의 다른 글
How to create a date picker and read values from it (0) | 2019.11.19 |
---|---|
How to create a picker and read values from it (0) | 2019.11.18 |
How to create a slider and read values from it (0) | 2019.11.18 |
How to disable autocorrect in a TextField (0) | 2019.11.18 |
How to add a placeholder to a TextField (0) | 2019.11.18 |
How to add a border to a TextField (0) | 2019.11.18 |
How to read text from a TextField (0) | 2019.11.18 |
How to disable the overlay color for images inside Button and NavigationLink (0) | 2019.11.18 |