I am currently browsing the documentation and web pages, but I do not see what I am looking for, and I just wanted to confirm if what I am looking for exists :-)
As I understand it, this line of code allows me to add an entry to the SQLite database that I display in my application through Core Data:
NSManagedObject *newSoftware = [NSEntityDescription insertNewObjectForEntityForName:
Now there is a line similar to the one that allows me to update the record I'm working on?
something like that?
NSManagedObject *newSoftware = [NSEntityDescription updateCurrentObjectForEntityForName:
Thanks so much for the tip :-)
source
share