无法在 iOS 15 swift 上禁用键盘上的自动填充。 Xcode 13

Unable to disable autofill on keyboard on iOS 15 swift. Xcode 13

我需要禁用键盘自动填充。我使用了以下代码:

firstName.autocorrectionType = .no
lastName.autocorrectionType = .no
        
firstName.textContentType = .none
lastName.textContentType = .none 

在 iOS 14 和更早的自动填充不显示。 iOS 13.7 image.png.

开启 iOS 显示 15 个自动填充 iOS 15 image.png.

是否为 iOS 15 上的自动填充添加了新行为以及如何禁用它?

这是解决方案,它可以帮助您禁用带有自动更正类型的文本字段 spellCheckingType

firstName.autocorrectionType = .no
firstName.spellCheckingType = .no

lastName.autocorrectionType = .no
lastName.spellCheckingType = .no