NSSecureTextField with a 'visibility' button.
Sometimes it's nice to be able to see the contents of a password field. DSFSecureTextField
adds a visibility button to the existing NSSecureTextField
allowing your users to show or hide the contents of the field.
Optionally, you can choose to dynamically remove the button from the control (for example, if you want to be able to let your users choose whether to show the password or not via a preference)
-
Copy the file
DSFSecureTextField.swift
into your project -
Or, use CocoaPods
pod 'DSFSecureTextField', :git => 'https://github.com/dagronf/DSFSecureTextField/'
-
Or, use Swift Package Manager
- Drag a Secure Text Field into the canvas
- Set the
Custom Class
field for the control toDSFSecureTextField
- Done!
Since DSFSecureTextField
inherits from NSSecureTextField
, you can create it exactly as you would for an NSSecureTextField
There is a very simple project in the Demos
folder.
Parameter | Type | Description |
---|---|---|
allowPasswordInPlainText |
Bool |
If true, allows the control to display a plain text representation of the password. Useful if you want to be able to control whether the user can choose (eg. via preferences) to make the password visible. |
displayToggleButton |
Bool |
If true, displays a button within the control (an eye) to allow the user to toggle between secure and plain text input |
visibility |
Visibility |
If .plainText , the password is displayed in plain text. |
A boolean flag to indicate if the field is allowed to display passwords in plain text.
If true, allows the control to display a plain text representation of the password. Useful if you want to be able to control whether the user can choose (eg. via preferences) to make the password visible.
When true, displays an 'eye' button embedded within the password field that allows the user to toggle the visibility of the password.
- If true, displays a button within the control (an eye) to allow the user to toggle between secure and plain text input
- If false (and
allowPasswordInPlainText
is true), the application needs to provide its own mechanism for settingvisibility
as appropriate.
The visibility flag denotes the visibility of the text within the field
Value | Description |
---|---|
.secure |
The content is displayed securely (eg. ●●●●●●●● ) |
.plainText |
The content is displayed in plain text (eg. gr00vy!. ) |
MIT License
Copyright (c) 2023 Darren Ford
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.