While running my watchOS 2 app in the simular, when I save objects to my core data store, they *do* appear in a table when I do a fetch.
However, when I launch the app again, the store appears to be empty (fetch returns 0 objects).
I have verified that the object is being saved as no error is thrown:
try coordinator.managedObjectContext.save()
Coordinator here is my CoreData stack that I pass among my page views (not a singleton).
Has anyone seen this behavior with CoreData and the simulator?
Thanks