如何使用“完成”键盘按钮关闭 UITextView?
我有一个 UITextView 并完成了以下操作:
text.returnKeyType = UIReturnKeyDone;
这样当我按下“完成”时我可以关闭键盘,但是当我单击“完成”时,它所做的只是进入下一行。我怎样才能改变这种行为?感谢您的帮助
Possible Duplicate:
How to dismiss keyboard for UITextView with return key?
I have a UITextView and have done the following:
text.returnKeyType = UIReturnKeyDone;
so that I can dismiss the keyboard when I press on done, however when i click on Done all it does is to go into the next line. How can I change this behavior? Thanks for the help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UITextView
上没有shouldReturn
,但您可以实现UITextViewDelegate
并监视插入:编辑:是的,抱歉,这是一个 欺骗。
There’s no
shouldReturn
onUITextView
, but you can implementUITextViewDelegate
and watch for insertions:Edit: And yes, sorry, this is a dupe.