前言
xcode 13.3
iOS 15.4
1、TextField 明文显示的输入框
文字输入框,相当于OC的UITextField
1.1、TextFieldStyle
TextField 有自己的风格,给我们提供了一些选项:
1、PlainTextFieldStyle:
.textFieldStyle(.plain)
A text field style with no decoration.
没有装饰的文本字段样式。
2、DefaultTextFieldStyle: TextField 的默认样式,在 iOS 中,这匹配了 PlainTextFieldStyle。
.textFieldStyle(.automatic)
The default text field style, based on the text field’s context. The default style represents the recommended style based on the current platform and the text field’s context within the view hierarchy.
默认文本字段样式,基于文本字段的上下文。 默认样式表示基于 视图层次结构中当前平台和文本字段的上下文。
3、RoundedBorderTextFieldStyle
.textFieldStyle(.roundedBorder)
A text field style with a system-defined rounded border.
具有系统定义的圆形边框的文本字段样式。
TextField("请输入手机号", text: $userName)
.textFieldStyle(.plain)
TextField("请输入手机号", text: $userName)
.textFieldStyle(.automatic)
TextField("请输入手机号", text: $userName)
.textFieldStyle