SwiftUI—使用SecureField密文输入框接收用户的密

2020-07-10  本文已影响0人  anny_4243

原文链接:https://github.com/fzhlee/SwiftUI-Guide#9TextField-SecureField

相当于UITexfield的secureTextEntry的属性设置为true时的情况。
示例代码:

struct ContentView : View {
    
    @State var password : String
    
    var body: some View {
        
        VStack{
            
            Text("Your password is \(password)!")
            
            SecureField("Your password", text: $password) {
                print("Your password is \(self.password)!")
            } //密文输入框,并设置指定占位符,同时设置它的text的值为password属性的值,并通过美元符号和password属性进行绑定包装
            .textFieldStyle(RoundedBorderTextFieldStyle())
            
        }
        .padding()
        
    }
}
上一篇下一篇

猜你喜欢

热点阅读