选择按下选项卡时文本字段循环的顺序

发布于 2024-11-19 17:09:49 字数 183 浏览 2 评论 0原文

我有几个文本字段,想设置一个特定的顺序,按下 Tab 键时它们将按该顺序循环。目前,它从带有 becomeFirstResponder 的文本字段开始,然后按照 xcode 放置的默认顺序继续。我可以以某种方式绕过该顺序并强制文本字段按特定顺序循环吗?就像将循环的最后一个链接回第一个循环一样。

感谢您的帮助。

I have several text fields and would like to set a particular order in which they would cycle when the tab key is pressed. Currently, it starts at a text field with becomeFirstResponder and then goes on in the default order which xcode put. Can I somehow bypass that order and force the text fields to cycle in a particular order? Like linking the last one of the cycle back to the first one.

Thanks for the help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彩扇题诗 2024-11-26 17:09:49

将窗口的 initialFirstResponder 出口连接到第一个文本字段,然后通过将该文本字段的 nextKeyView 出口连接到下一个文本字段(以及很快)。

Connect the initialFirstResponder outlet of your window to the first text field, then build a chain by connecting the nextKeyView outlet of that text field to the text field that should come next (and so on).

盛装女皇 2024-11-26 17:09:49

这就是所谓的 关键视图循环

That's called the key view loop.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文