如何禁用uitextview的userinteractionenable而不隐藏键盘

发布于 2024-11-08 11:45:22 字数 240 浏览 0 评论 0原文

我使用 uitextview 来显示一些文本,但我也使用了一些动画。在此动画出现期间,我想禁用键盘但不隐藏它。我尝试使用 self.textview.userInteractionEnabled = NO;、self.textview.editable = NO; 以及 [self.textview resignFirstResponder]; code> 但它仍然使键盘隐藏,并且还使我的动画没有显示正确的动画。

有人可以给我建议吗? 谢谢

i use uitextview to show some text, but i have use some animation too. During this animation appear I want to disable the keyboard but not hide it. I tried to use self.textview.userInteractionEnabled = NO;, self.textview.editable = NO;, and also [self.textview resignFirstResponder]; but it still make the keyboard hide, and also make my animation didn't show the right animation.

Can somebody give me suggestion?
Thank You

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

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

发布评论

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

评论(1

心病无药医 2024-11-15 11:45:22

声明 (BOOL)isAnimating 并在动画开始时将其设置为 YES,在动画结束时将其设置为 NO。然后实现以下内容:

- (BOOL)textField:(UITextField *)textField 
shouldChangeCharactersInRange:(NSRange)range 
replacementString:(NSString *)string
{
    return !isAnimating;
}   

当动画运行时,键盘保持打开状态并且文本字段中没有任何反应。结束后,一切又恢复正常。

Declare (BOOL)isAnimating and set it to YES when the animation begins and set it to NO when the animation end. Then implement the following:

- (BOOL)textField:(UITextField *)textField 
shouldChangeCharactersInRange:(NSRange)range 
replacementString:(NSString *)string
{
    return !isAnimating;
}   

The keyboard stays up and nothing happens in the textfield when the animation is running. After it ends, everything goes back to normal.

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