iOS 12 SMS Reading API?

前端 未结 6 854
既然无缘
既然无缘 2021-01-12 01:07

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

6条回答
  •  一整个雨季
    2021-01-12 01:18

    There is no api, but you need set textContentType as .oneTimeCode of UITextField property

    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

提交回复
热议问题