我有UITextView
它显示了来自 CoreData 实体的一些文本数据。
我需要编辑此文本数据并在键盘关闭后保存更改的可能性。
怎么做?
我知道如何保存数据,但如果我在外面点击,我不知道如何关闭键盘UITextView
。可能有一些本地方法可以做到这一点。
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
if ([appDelegate.managedObjectContext save:&error]) {
...
}
感谢您的任何帮助或建议!