As of now I would like to opt out of the new option iOS 11 gives, that is to suggest passwords in the app. When I run the app on iOS 11 I get the autofill option on top of t
Objective-C
if (@available(iOS 10, *)){ self.tfEmail.textContentType = @""; self.tfPassword.textContentType = @""; }
This worked for me.