In iOS 17 Beta4 : how can I disable password autofill accessory view option?

As per apple documentation we are setting textContentType with "" in order to disable password auto fill view option on keyboards which is working fine in all iOS versions below 17 beta.

Seems like it broke & password auto fill view option appearing on keyboards for iOS 17 beta versions even on setting textContentType with "" & inputAccessoryView as nil

self.username.textContentType = @""; self.password.textContentType = @"";

Post not yet marked as solved Up vote post of sailaja_k Down vote post of sailaja_k
1.2k views

Replies

.textContentType(.none) works for me