- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
想象一下,我有 6 个 TextFields 排列在一个有 3 列和 2 行的网格中。我们将通过它们在此网格中的 X、Y 位置来引用它们,从左上角 TextField 的 1,1 和右下角的 3,2 开始。
当我运行这个程序时,我将光标放在 TextField 1,1 中并输入一个值。我点击 Tab 键,光标转到 2,1;然后到 3,1;然后到 1,2;然后 2,2;最后到 3,2。
光标在第一行上水平移动,然后是第二行,依此类推。
不过,我需要更改该顺序。
我需要它沿着第 1 列前进,然后移动到第 2 列,然后进入第 3 列。
在 Cocoa 编程中,可以使用 nextKeyView 指定顺序。
SwiftUI 中有类似的东西吗?
我希望我可以像下面那样将它们分组在 VStack 中并获得我想要的行为,但它不起作用。我还尝试将列对放在 Group{...}
中但它不起作用。
struct ContentView: View {
@State private var oneone = ""
@State private var onetwo = ""
@State private var twoone = ""
@State private var twotwo = ""
@State private var threeone = ""
@State private var threetwo = ""
var body: some View {
HStack {
VStack {
TextField("1,1", text: $oneone)
TextField("1,2", text: $onetwo)
}
VStack {
TextField("2,1", text: $twoone)
TextField("2,2", text: $twotwo)
}
VStack {
TextField("3,1", text: $threeone)
TextField("3,2", text: $threetwo)
}
}
}
}
最佳答案
SwiftUI 还没有内置这个,但 Swift 有。要在 SwiftUI 中执行此操作,请创建一个符合 UIViewRepresentable 的自定义文本字段,以在文本字段中使用 becomeFirstResponder 功能。这是我在项目中的做法。这个例子有几个你可能不需要的可选变量。随意调整它以适合您。
struct CustomTextField: UIViewRepresentable
{
@Binding var text: String
@Binding var selectedField: Int
@Binding var secure: Bool // Optional
var placeholder: String = ""
var tag: Int
var keyboardType: UIKeyboardType = .asciiCapable // Optional
var returnKey: UIReturnKeyType = .next // Optional
var correctionType: UITextAutocorrectionType = .default // Optional
var capitalizationType: UITextAutocapitalizationType = .sentences // Optional
func makeUIView(context: UIViewRepresentableContext<CustomTextField>) -> UITextField
{
let textField = UITextField(frame: .zero)
textField.delegate = context.coordinator
textField.keyboardType = keyboardType
textField.returnKeyType = returnKey
textField.autocorrectionType = correctionType
textField.autocapitalizationType = capitalizationType
textField.tag = tag
textField.isSecureTextEntry = secure
textField.placeholder = placeholder
return textField
}
func makeCoordinator() -> CustomTextField.Coordinator
{
return Coordinator(text: $text, secure: $secure)
}
func updateUIView(_ uiView: UITextField, context: UIViewRepresentableContext<CustomTextField>)
{
uiView.text = text
uiView.isSecureTextEntry = secure
context.coordinator.newSelection = { newSelection in
DispatchQueue.main.async {
self.selectedField = newSelection
}
}
if uiView.tag == self.selectedField
{
uiView.becomeFirstResponder()
}
}
class Coordinator: NSObject, UITextFieldDelegate
{
@Binding var text: String
@Binding var secure: Bool
var newSelection: (Int) -> () = { _ in }
init(text: Binding<String>, secure: Binding<Bool>)
{
_text = text
_secure = secure
}
func textFieldDidChangeSelection(_ textField: UITextField)
{
DispatchQueue.main.async {
self.text = textField.text ?? ""
}
}
func textFieldDidBeginEditing(_ textField: UITextField)
{
self.newSelection(textField.tag)
}
func textFieldShouldReturn(_ textField: UITextField) -> Bool
{
if textField.returnKeyType == .done
{
textField.resignFirstResponder()
}
else
{
self.newSelection(textField.tag + 1)
}
return true
}
}
}
然后,在带有文本字段的 View 中,为每个字段分配一个不同的标签,指示所需的顺序。
struct ContentView: View {
@State private var oneOne = ""
@State private var oneTwo = ""
@State private var twoOne = ""
@State private var twoTwo = ""
@State private var threeOne = ""
@State private var threeTwo = ""
@State private var selectedField: Int = 0
@State private var fieldsSecure: Bool = false
var body: some View {
HStack {
VStack {
CustomTextField(
text: $oneOne,
selectedField: $selectedField,
secure: $fieldsSecure,
placeholder: "1, 1",
tag: 1,
keyboardType: .asciiCapable,
returnKey: .done,
correctionType: .yes,
capitalizationType: .words)
CustomTextField(
text: $oneTwo,
selectedField: $selectedField,
secure: $fieldsSecure,
placeholder: "1, 2",
tag: 4,
keyboardType: .asciiCapable,
returnKey: .done,
correctionType: .yes,
capitalizationType: .words)
}
VStack {
CustomTextField(
text: $twoOne,
selectedField: $selectedField,
secure: $fieldsSecure,
placeholder: "2, 1",
tag: 2,
keyboardType: .asciiCapable,
returnKey: .done,
correctionType: .yes,
capitalizationType: .words)
CustomTextField(
text: $twoTwo,
selectedField: $selectedField,
secure: $fieldsSecure,
placeholder: "2, 2",
tag: 5,
keyboardType: .asciiCapable,
returnKey: .done,
correctionType: .yes,
capitalizationType: .words)
}
VStack {
CustomTextField(
text: $threeOne,
selectedField: $selectedField,
secure: $fieldsSecure,
placeholder: "3, 1",
tag: 3,
keyboardType: .asciiCapable,
returnKey: .done,
correctionType: .yes,
capitalizationType: .words)
CustomTextField(
text: $threeTwo,
selectedField: $selectedField,
secure: $fieldsSecure,
placeholder: "3, 2",
tag: 6,
keyboardType: .asciiCapable,
returnKey: .done,
correctionType: .yes,
capitalizationType: .words)
}
}
}
关于swiftui - SwiftUI 是否有像 Cocoa 的 nextKeyView 这样的东西,以便我可以指定当我点击 Tab 时 TextViews 获取光标的确切顺序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66559849/
这个fn是吗: function isplainobj ( obj ) { return Object.prototype.toString.call( obj ) === "[object
我尝试创建一个我没有经验的小 bash 脚本。我尝试做类似的事情: #!/bin/bash statut="na" if [ $proc = 0 ]; then statut = "close
我想重写 HighLine 的几个方法来自定义我的控制台,目前我的代码如下所示: cmd = ask("#{@prompt_label} #{@prompt_separator} ",
鉴于下面的 HTML,我尝试使用 jQuery 来匹配所有具有类“foo”的跨度的列表项,并且该跨度应包含文本“relevant”。 Some text relevant Some more
我拥有一个 5 美元 20GB SSD Digital Ocean Droplet,它几乎用完了 Docker 镜像和容器的空间。 有没有办法购买一个卷,将其连接到服务器并安全地将所有 Docker
我有这样的表: id name number result stuff stuff stuff stuff 我只想将 class = "red" 添加到
我需要计算两点之间的距离,但不是以常规方式。我需要知道“东西距离”+“南北距离”。我想这比常规的“乌鸦飞翔”计算更简单,但我仍然不知道如何做到这一点。 我想使用 MySQL 查询来执行此操作,并且最好
#include #include #include typedef struct dict_pair { void *key; void *value; struct dict_p
为什么当我尝试通过 将 char[] word 写入控制台时会发生这种奇怪的事情 Console.WriteLine(word); 我得到了一个正确的结果,但是当我写的时候 Console.Write
一个简单的例子: class C{} class B{ @Inject C c; void doSomething(){ System.out.println(c);
我想做某事,但不确定如何描述它。我有这门课 public class Company { private List _persons; private Person GetPersonByNa
我正在尝试实现我自己的 qDebug()样式调试输出流,这基本上是我目前所拥有的: struct debug { #if defined(DEBUG) template std::os
所以我正在为我的应用程序编写一个搜索功能,代码如下: - (void) selectObject: (NSString *)notes{ [axKnotes removeAllObjects]
我想在 Rust 中匹配一种复杂的继承式东西: struct Entity { pub kind: EntityKind, } pub enum EntityKind { Player
我是 SQL 新手。这没有返回任何结果...... SELECT media.id as mediaid, media.title as mediatitle, media.description
在微型 SDCard 上写入 Android things 图像并将该卡插入 Raspberry Pi 3 Model B 并打开电源,启动时显示“Auto config Please wait”然后
这是一个常见的但是文本出现在框的右侧,不是极右但几乎是这样 h3: ................................................ .................
#include #include #include #include #include int main(int argc, string argv[]) { if(argc >
所以我试图让一些东西相互堆叠。首先,查看工作链接会有所帮助,您会看到问题所在: http://brownbox.net.au/clients/matchlessphotography/ 现在我需要使用
我想在禁用 javascript 时在我的网站顶部显示一条消息(就像在 SO 上一样),但在谷歌浏览器上不起作用 最佳答案 看起来是这样。 您可以使用 javascript 隐藏“noscript”消
我是一名优秀的程序员,十分优秀!