Obscure a UITextField password

前端 未结 9 1039
生来不讨喜
生来不讨喜 2020-12-07 15:20

I am doing a login page. I have UITextField for password.

Obviously, I do not want the password to be seen; instead, I want circles to show when typing. How do you s

9条回答
  •  情话喂你
    2020-12-07 15:58

    One can do this for Obscure a UITextField password:

    enter image description here

    CODE

    Objective-C:

      textField.secureTextEntry = YES;
    

    Swift:

      textField.isSecureTextEntry = true 
    

提交回复
热议问题