Debashish Sahoo
Debashish Sahoo

Reputation: 21

iOS Strong password problem when I start typing the password field

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

Answers (2)

Vladimir Krivitskii
Vladimir Krivitskii

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

Saurabh Pathak
Saurabh Pathak

Reputation: 1507

Go to Setting.

enter image description here

Click on Password

enter image description here

Give any password and press enter.

enter image description here

And off AutofillPassword

enter image description here

Upvotes: -2

Related Questions