iOS 11 disable password autofill accessory view option?

后端 未结 20 2478
孤独总比滥情好
孤独总比滥情好 2020-11-28 04:20

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

20条回答
  •  感情败类
    2020-11-28 04:54

    self.passwordTextField.autocorrectionType = NO;
    

    It does not seem to work, the keychain sign still there,

    self.passwordTextField.textContentType = UITextContentTypeName;
    

    The code above does work, but if the users set up their Apple ID account, Then, the name of the apple id will be display on the keyboard you cannot disable it by set autocorrectionType to No, not sure if Apple still refines this autofill feature, it's quite buggy right now.

提交回复
热议问题