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 = @"";

.textContentType(.none) works for me

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