使 UITextField 在加载时处于活动状态
我有一个只有一个文本字段的应用程序,我希望在加载视图时该文本字段处于活动状态,并且键盘处于活动状态。
有什么办法可以强制吗?
詹姆斯
I have an app that only has one text field and I want that text field active with the keyboard active when the view loads.
Is there any way to force it?
James
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使其成为第一响应者。有关教程,请参阅此链接来自苹果。
Make it the first responder. See this link for a tutorial from Apple.
简单的
Simple
将其设为第一响应者
在 Swift 中,您可以使用https://developer.apple .com/documentation/uikit/uiresponder/1621113-becomefirstresponder
In Swift, you can make it the first responder with
https://developer.apple.com/documentation/uikit/uiresponder/1621113-becomefirstresponder
调用该对象作为第一响应者就可以了。但我花了几分钟发现最好分配它。最后!
例如,如果您有一个动画 UIView,请在绘制视图之后分配它。
Calling the object to be a First Responder will do it. But I spent a few minutes finding out it's best to assign it.. LAST!
If you have an animation UIView for example, assign it after the view is drawn.