Reputation: 21
I have created a register page in iOS which has a password and another confirm password field. Both has a content type password, keyboard is ASCII enabled. When I start typing the password on simulator's keyboard I get a text written Strong password on both which lets me to write nothing else, But I don't get any such error when I type on my laptop's keyboard. I have attached the screenshot.
Strong password problem in iOS
Upvotes: 2
Views: 1154
Reputation: 9
Yes, this error is still here. It comes with "Secure Text Entry" by default.
But, you can change your UITextField to the "One Time Code" and error will be gone.
For example:
Swift
yourTextField.textContentType = .oneTimeCode
Upvotes: 0
Reputation: 1507
Go to Setting.
Click on Password
Give any password and press enter.
And off AutofillPassword
Upvotes: -2