如何禁用uitextview的userinteractionenable而不隐藏键盘
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
声明
(BOOL)isAnimating
并在动画开始时将其设置为YES
,在动画结束时将其设置为NO
。然后实现以下内容:当动画运行时,键盘保持打开状态并且文本字段中没有任何反应。结束后,一切又恢复正常。
Declare
(BOOL)isAnimating
and set it toYES
when the animation begins and set it toNO
when the animation end. Then implement the following:The keyboard stays up and nothing happens in the textfield when the animation is running. After it ends, everything goes back to normal.