I am currently looking through documentation and the web, but I am not seeing what I am looking for and I would just like to confirm if what I am looking for exists:-)
As I understand it - this line of code allows me to add a record to the SQLite database which I am showing in my app through Core Data:
NSManagedObject *newSoftware = [NSEntityDescription insertNewObjectForEntityForName:
Now is there a line similar to that that allows me to update the record I am working on?
something like this?
NSManagedObject *newSoftware = [NSEntityDescription updateCurrentObjectForEntityForName:
Thank you very much for the feedback:-)