Hi,
I started using core data and I read that I can save the data using the managedObjectContext "save" function.
However, I noticed that when I fetch records from my store (sqlite db), even if I change my managed object without saving, and I reload my view , the new data is loaded. (In my viewWillAppear I fetch the data all over again from the store).
So if there some automatic saving going on under the hood ? and if that's the case when should I use the "save" function.
Thanks