如何在键盘上建立一个栏
我想通过单击关闭按钮来关闭键盘,如何在键盘上建立一个栏?像这样:
(来源:alexcurylo.com)
I want to dismiss keyboard by click dismiss button ,How to build a bar on the keyboard? like this:
(source: alexcurylo.com)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
此处对此进行了解答。基本上,您向
UITextView
发送一条resignFirstResponder
消息。当然,您可以将该代码放在按钮的委托上。It was answered here. Basically, you send a
resignFirstResponder
message to theUITextView
. Of course, you will put that code on your button's delegate.尝试输入以下代码。它可能对你有用。
将以下变量放入 viewController.h 文件中
现在将以下代码放入 viewController.m 文件中。
Try to put following code. It might work for you.
Put following variables in your viewController.h file
Now put following code in you viewController.m file.
在这里你可以在键盘上建立一个栏
在xib上获取静态工具栏,然后将一个按钮放在工具栏上,然后将工具栏隐藏起来
当您创建工具栏时,在您的方法中编写代码,就像您想在文本视图上创建工具栏一样,然后开始编辑方法,
当您关闭键盘时,编写此方法并在按下工具栏按钮时调用此方法
希望这会对您有所帮助。
Here you can build a bar on a keyboard
Take static toolbar on xib and take one button and put it on toolbar, and make toolbar hidden ,now
write code in your method when you create a toolbar ,like if you want to create toolbar on textview begin editing method then,
And when you dismiss keyboard write this method and call this method when toolbar button pressed
Hope this will help you..