使 UITextField 在加载时处于活动状态

发布于 2024-09-08 21:23:16 字数 89 浏览 4 评论 0原文

我有一个只有一个文本字段的应用程序,我希望在加载视图时该文本字段处于活动状态,并且键盘处于活动状态。

有什么办法可以强制吗?

詹姆斯

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 技术交流群。

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

发布评论

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

评论(4

我的鱼塘能养鲲 2024-09-15 21:23:16

使其成为第一响应者。有关教程,请参阅此链接来自苹果。

Make it the first responder. See this link for a tutorial from Apple.

假情假意假温柔 2024-09-15 21:23:16

简单的

[self.myTextView becomeFirstResponder];

Simple

[self.myTextView becomeFirstResponder];
若水微香 2024-09-15 21:23:16

将其设为第一响应者

textField.becomeFirstResponder()

在 Swift 中,您可以使用https://developer.apple .com/documentation/uikit/uiresponder/1621113-becomefirstresponder

In Swift, you can make it the first responder with

textField.becomeFirstResponder()

https://developer.apple.com/documentation/uikit/uiresponder/1621113-becomefirstresponder

刘备忘录 2024-09-15 21:23:16

调用该对象作为第一响应者就可以了。但我花了几分钟发现最好分配它。最后!

[UITextFeild becomeFirstResponder];

例如,如果您有一个动画 UIView,请在绘制视图之后分配它。

[UIView animateWithDuration:0.9
animations:^{
    UIView.frame = newFrame;
}
completion:^(BOOL finished){
    [UIView animateWithDuration:0.9
        animations:^{}
        completion:^(BOOL finished){
        [UITextFeild becomeFirstResponder];// << Right here..
    }];
}];   

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!

[UITextFeild becomeFirstResponder];

If you have an animation UIView for example, assign it after the view is drawn.

[UIView animateWithDuration:0.9
animations:^{
    UIView.frame = newFrame;
}
completion:^(BOOL finished){
    [UIView animateWithDuration:0.9
        animations:^{}
        completion:^(BOOL finished){
        [UITextFeild becomeFirstResponder];// << Right here..
    }];
}];   
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文