iOS完全删除自动更正栏

时间:2019-03-04 23:03:27

标签: ios xcode

有没有一种方法可以完全删除自动更正栏?

enter image description here

我已设置:

textField.autocorrectionType = UITextAutocorrectionTypeNo;

但是它不会删除条,只是自动更正。

1 个答案:

答案 0 :(得分:0)

如果设置<Button Content="Type 1" Command="{Binding NavigateToType1Command}" /> <Button Content="Type 2" Command="{Binding NavigateToType2Command}" /> <ContentControl Content="{Binding MainContent}"> <ContentControl.Resources> <DataTemplate DataType="{x:Type vm_Type1:Type1ViewModel}"> <vw_Type1:Type1View /> </DataTemplate> <DataTemplate DataType="{x:Type vm_Type2:Type2ViewModel}"> <vw_Type2:Type2View /> </DataTemplate> </ContentControl.Resources> </ContentControl> 并删除InternalDelegateCommandautocorrectionType

,则可以隐藏此栏。
inputAssistantItem.leadingBarButtonGroups

摘自UITextInputAssistantItem文档

  

要完全隐藏快捷方式,请设置LeadingBarButtonGroups和   TrailingBarButtonGroups属性设置为nil。这样做只会隐藏   快捷方式,并且不会隐藏键入建议。隐藏输入   建议,您还必须设置   显示UITextAutocorrectionType.no键盘的响应程序。