A Boolean value that indicates whether autocorrection is disabled for this view. あるブール値、それは自動修正がこのビューに対して無効にされるかどうかを指し示します。
disableAutocorrection(_:)
Availability 有効性
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 8.0+
Technology
- Swift
UI
Declaration 宣言
Parameters パラメータ
enabled
Discussion 議論
Use disable
when the effect of autocorrection would make it more difficult for the user to input information. The entry of proper names and street addresses are examples where autocorrection can negatively affect the user’s ability complete a data entry task.
disable
を使ってください、自動修正の効果がユーザとって情報の入力をより困難にする時は。固有名詞および街路住所の登録は代表例です、そこにおいて自動修正はデータ登録タスクを完了するユーザの能力に悪い影響を及ぼしえます。
In the example below configures a Text
with the .default
keyboard. Disabling autocorrection allows the user to enter arbitrary text without the autocorrection system offering suggestions or attempting to override their input.
下の例ではあるText
を.default
キーボードで構成設定します。自動修正を無効にすることは、ユーザに自由気ままなテキストを打ち込ませます、自動修正システムが提案を提示したり彼らの入力を覆そうとすることなしに。
TextField("1234 Main St.", text: $address)
.keyboardType(.default)
.disableAutocorrection(true)