alexisakers/BulletinBoard

UITextfield > PasswordField - secureTextEntry

DK-Web opened this issue · 2 comments

Hi, can you please install the possibility that you can use textfields as password fields?

Only this parameter is missing:
texfield.secureTextEntry = true

Thanks a lot!

You can do this yourself.

I don't know how you are adding your text field, but if you are calling BLTNInterfaceBuilder.makeTextField() it returns the text field for direct access.

Hi, thank you! I did not know that I could use the textfield. With this change everything works perfectly. Thank you for your quick help!

textField = interfaceBuilder.makeTextField(placeholder: "Password", returnKey: .done, delegate: self) textField.isSecureTextEntry = true