UITextView键盘隐藏问题
我想在将内容输入 UITextView 后隐藏键盘,但默认情况下我不能像 UITextField 那样执行此操作。有什么方法可以隐藏键盘,现在我放置了可以帮助我的按钮。如果有任何隐藏它的默认方法,请告诉我。
I want to hide the keyboard after typing the content into the UITextView but i can not do this by default like UITextField. Is there any way to hide the keyboard, Rightnow i put the button which can help me out.If any default way to hide it then please tell me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当用户输入“\n”(换行)意味着按“完成”或“返回”按钮时,使用以下代码从文本视图中隐藏键盘。
示例 1 和 示例2。
Use following code for hide the keyboard from text view when user enter "\n"(new line) means press "Done" or "return" button.
Example1 and Example2.
这是您的详细信息答案
Here is your detail answer