Support showing verification code suggestion on keyboard from Message
Hello,
Is it possible add support code prompts from SMS? There is a standard feature for this:
textfield.textContentType = .oneTimeCode
Any update on this?
Unfortunately oneTimeCode can’t be supported by PinCodeTextField at the moment. There have been some work around it some time ago but it hadn’t succeeded. Please check my comment in closed issue: https://github.com/tkach/PinCodeTextField/issues/44
I also recommend to have a look at this PR, it’s work in progress but may work for you. https://github.com/tkach/PinCodeTextField/pull/47
hi katch,
how long it will take for avail this option...
@rajathevar456 Unfortunately, auto-fill won't work with PinCodeTextField.
Apple doc on auto-fill iOS supports Password AutoFill on UITextField, UITextView, and any custom view that adopts the UITextInput protocol.
This control (PinCodeTextField) is based on another protocol (UIKeyInput) which is a lot simpler to implement and is enough for simple code input.
In contrast with UIKeyInput, custom control implementation that is based on UITextInput (for auto-fill suggestion), requires to define a complex text input system which seems to be too complicated for the task of PIN code entering, especially if the only reason of implementation is an auto-fill.
Adding the functionality of UITextInput doesn't align with my vision of PinCodeTextField, there's no good solution of this feature, at least at this moment.
If you need to support an auto-fill in your text input I would suggest to use UITextField or UITextView and customize it.