In Beta version of iOS 12 I have observed it gives OTP(from SMS) in keyboard suggestion. So is there any API which they have created for developers ? Or that would just
There is no api, but you need set textContentType as .oneTimeCode of UITextField property
textContentType
.oneTimeCode
UITextField
otpTextField.textContentType = .oneTimeCode
one more thing,
If you use a custom input view for text field, iOS cannot display the necessary AutoFill UI.
Click here for more info by apple