반응형
Hacking with Swift 사이트의 강좌 번역본입니다.
[원문 : https://www.hackingwithswift.com/quick-start/swiftui/how-to-disable-autocorrect-in-a-textfield]
How to disable autocorrect in a TextField
SwiftUI의 TextField는 기본적으로 자동수정가 가능하며, 대부분의 경우에 이를 원할 것입니다. 하지만, 비활성화를 원하는 경우에, 다음과 같이 disableAutocorrection() modifier를 사용합니다.
TextField("Enter your name", text: $name)
.disableAutocorrection(true)
반응형
'SwiftUI > Responding to events' 카테고리의 다른 글
How to create a segmented control and read values from it (0) | 2019.11.19 |
---|---|
How to create a date picker and read values from it (0) | 2019.11.19 |
How to create a picker and read values from it (0) | 2019.11.18 |
How to create a slider and read values from it (0) | 2019.11.18 |
How to create secure text fields using SecureField (0) | 2019.11.18 |
How to add a placeholder to a TextField (0) | 2019.11.18 |
How to add a border to a TextField (0) | 2019.11.18 |
How to read text from a TextField (0) | 2019.11.18 |