Coredata Database Not Showing In Sqlite Since Moving To Xcode 5
I have an app that uses a CoreData database the contents of which I view using sqlite. The database path is the same: /Users/Comp1/Library/Application Support/iPhone Simulator/7.0.
Solution 1:
What happens when you launch the app a second time, can you see the data in your app?
In iOS 7, SQLite now has journaling turned on. I wonder if the journalling is causing a confusion (data is there but not in the sqlite file yet).
If you see data on the second launch then don't worry about it. The journaling just hasn't flushed.
Post a Comment for "Coredata Database Not Showing In Sqlite Since Moving To Xcode 5"