更改 xcode 中的默认文本字段

发布于 2024-11-17 23:54:33 字数 126 浏览 3 评论 0原文

我制作了一个包含多个文本字段的用户界面。当应用程序启动时,xcode 会自动选择第一个。但就应用程序的目的而言,这是不切实际的。

启动时如何强制它从另一个文本字段开始?我想也许笔尖唤醒可以做到这一点,但我不知道代码是什么。

I've made a user interface that contains several text fields. When the app launches, xcode automatically selects the first one. But for the purpose of the app, that's not practical.

How can I force it to start at another text field when launched? I thought maybe an awake from nib could do it but i have no idea what the code would be.

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

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

发布评论

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

评论(1

淡淡绿茶香 2024-11-24 23:54:33

在控制器的 viewWillAppear 方法中调用 [myTextFieldBecomeFirstResponder](其中“myTextField”是您要开始的字段)。

Put a call to [myTextField becomeFirstResponder] (where "myTextField" is the field you want to start with) in your controller's viewWillAppear method.

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