更改 xcode 中的默认文本字段
我制作了一个包含多个文本字段的用户界面。当应用程序启动时,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在控制器的
viewWillAppear
方法中调用[myTextFieldBecomeFirstResponder]
(其中“myTextField”是您要开始的字段)。Put a call to
[myTextField becomeFirstResponder]
(where "myTextField" is the field you want to start with) in your controller'sviewWillAppear
method.