Instance Method インスタンスメソッド

disableAutocorrection(_:)

Sets whether to disable autocorrection for this view. 自動修正をこのビューに対して無効にするべきかどうかを設定します。

Declaration 宣言

func disableAutocorrection(_ disable: Bool?) -> some View

Parameters パラメータ

enabled

A Boolean value that indicates whether autocorrection is disabled for this view. あるブール値、それは自動修正がこのビューに対して無効にされるかどうかを指し示します。

Discussion 議論

Use disableAutocorrection(_:) 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. disableAutocorrection(_:)を使ってください、自動修正の効果がユーザとって情報の入力をより困難にする時は。固有名詞および街路住所の登録は代表例です、そこにおいて自動修正はデータ登録タスクを完了するユーザの能力に悪い影響を及ぼしえます。

In the example below configures a TextField 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. 下の例ではあるTextField.defaultキーボードで構成設定します。自動修正を無効にすることは、ユーザに自由気ままなテキストを打ち込ませます、自動修正システムが提案を提示したり彼らの入力を覆そうとすることなしに。


TextField("1234 Main St.", text: $address)
    .keyboardType(.default)
    .disableAutocorrection(true)

See Also 参照

Configuring Text Entry