A passcode entry field for macOS similar to Apple's two-factor authentication field.
The control is made up of multiple groups of passcode 'cells'. Each cell holds a single 'character', and you define groups of cells using a group separator. The pattern you define provides the layout -- containing #
for a passcode cell and -
for a group separator.
For example, to create a passcode of six characters split evenly into two groups of three cells, you set the passcode pattern to "###-###"
.---. .---. .---. .---. .---. .---.
| | | | | | | | | | | |
| | | | | | | | | | | |
`---' `---' `---' `---' `---' `---'
This control can be used in both autolayout and manual layout apps (internally the control does not use auto-layout)
Note this control uses @VIViewInvalidating providing automatic NSView invalidation when properties value change. (automatically added as a dependency)
- Configurable allowable character support
- Character Viewer support (eg. hit Command-Ctrl-Space when a passcode cell is active)
- Different fonts
- Different spacing (intra-cell, edge insets, group and cell spacing)
- Light and dark modes
- High contrast support
- Accessibility and VoiceOver support
Using Swift Package Manager, add https://github.com/dagronf/DSFPasscodeView
to your project.
The cell pattern to use when displaying the passcode. A #
represents a cell and a -
represents a group space.
The only valid characters are # (a cell) and - (group spacing). Attempting to set a pattern with any other character will result in a fatalError()
Examples :-
"###-###"
.---. .---. .---. .---. .---. .---.
| | | | | | | | | | | |
| | | | | | | | | | | |
`---' `---' `---' `---' `---' `---'
"####-##-###"
.---. .---. .---. .---. .---. .---. .---. .---. .---.
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | |
`---' `---' `---' `---' `---' `---' `---' `---' `---'
"##-##-#"
.---. .---. .---. .---. .---.
| | | | | | | | | |
| | | | | | | | | |
`---' `---' `---' `---' `---'
The spacing to use between adjacent cells
The spacing to use between cell groups
The font to use when displaying the character in a cell
The padding to use between the character and the edge of its cell
The padding to use between the cells and the bounds of the control
Enable or disable the control (observable)
There are two methods of validation
This settings on the control allows you to specify a string containing the characters that are allowed within the control. By default, this is 0123456789
.
For more complex validations, you can specify a callback block which can be used to validate each character
It takes a string element and returns either a value transformed string element (for example, uppercased), or nil if the presented character isn't valid for the control.
// A validator block which allows numbers and case-insensitive A-F characters
self.passcode.characterValidatorBlock = { element in
let validChars = "0123456789ABCDEF"
let s = element.uppercased() // Always check against uppercase
if validChars.contains(s) { // If the validChars contains the uppercased char...
return s.first // ... return the uppercased version
}
return nil // Unsupported char, ignore by returning nil
}
You can bind to these member variables to receive updates as the control content changes.
Is the passcode entered a valid passcode (ie. all the values are specified)
Are there no values specified yet
If the passcode is valid, the passcode value as a string, otherwise nil.
You can attach a delegate to receive messages back from the view if binding is not your thing.
func passcodeViewDidChange(
_ view: DSFPasscodeView)
Called when the content of the passcode view changes.
func passcodeView(
_ view: DSFPasscodeView, // The passcode view
updatedPasscodeValue passcode: String) // The valid passcode as a string of characters
Called ONLY when the passcode is valid and complete.
func passcodeView(
_ view: DSFPasscodeView, // The passcode view
didTryInvalidCharacter invalidChar: String?, // The invalid character, or nil for a special key
atIndex index: Int) // The passcode cell index where the attempt failed
Called if the user presses an unsupported character or key in a passcode cell.
- Xcode has been broken for many years regarding support for
@IBDesignable
/@IBInspectable
. Whilst this control provides support, Xcode's support for @IBDesignable for a control provided from a package is completely broken.
If you copy the DSFPasscodeView source files directly into your project the Designables work as expected (FB8358478).
MIT. Use it and abuse it for anything you want, just attribute my work. Let me know if you do use it somewhere, I'd love to hear about it!
MIT License
Copyright (c) 2021 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.