如何处理名称为“done”的键盘按钮在 iOS 中
现在我有一个文本字段。
我输入一些单词,键盘就会出现。
当我按下键盘“完成”时,键盘就会消失。 (我已经完成了这个功能)
但是接下来,
当用户按下“完成”按钮时,我想使用核心数据框架插入数据
,那么如何解决这个问题?
我知道如何使用核心数据插入数据,所以你不需要告诉我如何插入数据。
我正在使用此代码来消失键盘。
-(BOOL)textFieldShouldReturn:(UITextField *)theTextField {
[txtName resignFirstResponder];
return YES;
}
谢谢大家
now i have a textField.
and i enter some words,the keyboard will appear.
when i pressed the keyboard "done",the keyboard will disappear. (i have finished this function)
but next,
i want to insert data using core data framework when the user pressed the button "done"
so,how to solve this problem?
i know how to insert data using core data,so you do not need to tell me how to insert the data.
i am using this code to disappear keyboard.
-(BOOL)textFieldShouldReturn:(UITextField *)theTextField {
[txtName resignFirstResponder];
return YES;
}
thanks everybody
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在示例代码中,我有 3 个 UITextField。您可以在我们到达最后一个字段后处理您的更新
In the example code, I have 3 UITextField. You can process your update after we reach the last field