Updated for Xcode 12.0
SwiftUI’s TextField
enables autocorrect by default, which is what you’ll want in most cases. However, if you want to disable it you can do so by using the disableAutocorrection()
modifier, like this:
TextField("Enter your name", text: $name)
.disableAutocorrection(true)
Tip: If you use Xcode’s visual interface for designing SwiftUI views, the icon for disabling autocorrect is a duck with a line through it. I’ll let you figure out why for yourself…
SPONSORED From January 26th to 31st you can join a FREE crash course for iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a senior developer!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.