使用“Return”调用方法(完成)键盘按钮
有没有人可以给我一个示例方法,通过按键盘的返回按钮来调用该方法并将文本视图的文本(之前输入的)保存在 nsuserdefaults 中?
多谢 :)
is there anyboby who can give me an example method that is called by pressing the return button of the keyboard and saves the text of a textview (that was typed in before) in the nsuserdefaults?
thanks a lot :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您的
UITextField
将返回键类型设置为UIReturnKeyGo
(这是针对键盘上的图像):然后使用此方法执行您想要执行的操作:
要从文本字段获取文本,只需调用
theTextField.text
并根据需要保存!迅捷版
Make sure your
UITextField
has a return key type set toUIReturnKeyGo
(this is for the image on the keyboard):Then use this method to do what ever you want to do:
To get the text from the textfield just call
theTextField.text
and save as you wish!Swift Version
如果要将 UITextField 动态添加到 UITableCell,则还需要为其设置委托:
还需要在头文件上添加以下内容:
If you are adding UITextField to an UITableCell dynamically, you need to also set delegate for it:
also on the the header file you need to add this: