实例方法
keyboard
keyboardType(_:)
设置此视图的键盘类型。
声明
func keyboardType(_ type: UIKeyboardType) -> some View
参数
type
UIKeyboardType
详述
使用keyboardType(_:)
指定用于文本输入的键盘类型。许多不同的键盘类型可用于满足特殊的输入需求,例如输入电子邮件地址或电话号码。
下面的示例展示了一个 TextField
来输入电子邮件地址。将文本字段的键盘类型设置为 .emailAddress
可确保用户只能输入格式正确的电子邮件地址。
TextField("someone@example.com", text: $emailAddress)
.keyboardType(.emailAddress)
通过
枚举可以使用几种不同类型的专用键盘类型。要指定默认系统键盘类型,请使用 UIKeyboardType
.default
。
可用版本
iOS 13.0+, iPadOS 13.0+, Mac Catalyst 13.0+, tvOS 13.0+
相关用法
- Swift Optional keyboardShortcut(_:modifiers:localization:)用法及代码示例
- Swift Optional symbolVariant(_:)用法及代码示例
- Swift Optional popover(isPresented:attachmentAnchor:arrowEdge:content:)用法及代码示例
- Swift Optional mask(alignment:_:)用法及代码示例
- Swift Optional listSectionSeparatorTint(_:edges:)用法及代码示例
- Swift Optional badge(_:)用法及代码示例
- Swift Optional fullScreenCover(isPresented:onDismiss:content:)用法及代码示例
- Swift Optional clipShape(_:style:)用法及代码示例
- Swift Optional preferredColorScheme(_:)用法及代码示例
- Swift Optional background(_:ignoresSafeAreaEdges:)用法及代码示例
- Swift Optional saturation(_:)用法及代码示例
- Swift Optional focusSection()用法及代码示例
- Swift Optional overlay(alignment:content:)用法及代码示例
- Swift Optional colorMultiply(_:)用法及代码示例
- Swift Optional confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)用法及代码示例
- Swift Optional offset(_:)用法及代码示例
- Swift Optional focused(_:equals:)用法及代码示例
- Swift Optional hidden()用法及代码示例
- Swift Optional previewDevice(_:)用法及代码示例
- Swift Optional imageScale(_:)用法及代码示例
- Swift Optional accessibilityAction(named:_:)用法及代码示例
- Swift Optional textSelection(_:)用法及代码示例
- Swift Optional pageCommand(value:in:step:)用法及代码示例
- Swift Optional padding(_:_:)用法及代码示例
- Swift Optional previewInterfaceOrientation(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Optional keyboardType(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。