How to show verification code suggestion on keyboard from Message
问题 I watched this video What's New in Cocoa Touch at WWDC 2018 and seen: How to show this information? 回答1: Review WWDC 2018 Session 204 - Automatic Strong Passwords and Security Code AutoFill. You will need to use a UITextField for entry and the system keyboard (no custom controls) and set the textContentType on it to .oneTimeCode (new in iOS 12). let securityCodeTextField = UITextField() securityCodeTextField.textContentType = .oneTimeCode The operating system will detect verification codes