I am making an app that relies on Core Data. I am able to enter data into a text field and store it.
But I need to know if the data is being stored.
I am try
In Swift 3, you have the the NSPersistentContainer and you can retrieve the path from there like this:
NSPersistentContainer
persistentContainer.persistentStoreCoordinator.persistentStores.first?.url
(Assuming you are only using one persistent store)