如何禁用 UITextField 键盘而不隐藏它?

发布于 2024-11-05 12:56:46 字数 126 浏览 0 评论 0原文

我有一个动画,在此期间我想禁用键盘但不隐藏它。我什至尝试过 self.view.userInteractionEnabled = NO; ,但这隐藏了键盘。我猜它必须调用resignFirstResponder

I have an animation, during which I want to disable the keyboard but not hide it. I even tried self.view.userInteractionEnabled = NO;, but that hides the keyboard. I guess it must call resignFirstResponder.

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

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

发布评论

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

评论(2

乖乖公主 2024-11-12 12:56:46

要禁用所有内容,您可以

[[UIApplication sharedApplication] beginIgnoringInteractionEvents];

在开始动画之前和

[[UIApplication sharedApplication] endIgnoringInteractionEvents];

动画结束之后使用,例如在其完成块中。

To disable everything, you can use

[[UIApplication sharedApplication] beginIgnoringInteractionEvents];

right before you start the animation and

[[UIApplication sharedApplication] endIgnoringInteractionEvents];

after the animation finishes, e.g., in its completion block.

迷你仙 2024-11-12 12:56:46

您可以禁用键盘而不将其关闭,方法是:

NSArray *windows = [UIApplication sharedApplication].windows;
if ([windows count] > 1) {
    UIWindow *keyboardWindow = windows[1];
    keyboardWindow.userInteractionEnabled = NO;
}

但是,这显然是非常黑客的&易碎,我不确定它是否符合苹果的条款。

You can disable the keyboard without dismissing it by doing:

NSArray *windows = [UIApplication sharedApplication].windows;
if ([windows count] > 1) {
    UIWindow *keyboardWindow = windows[1];
    keyboardWindow.userInteractionEnabled = NO;
}

But, it's obviously very hackish & fragile, and I'm not sure if it complies with Apple's terms.

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