How to view existing data in Core Data?

前端 未结 3 1878
心在旅途
心在旅途 2021-02-09 16:58

Well, may be this question is silly, but I couldn\'t find a way (except programmatically). I built a project (for iPhone OS 3.0) which uses Core Data. The xcdatamodel f

相关标签:
3条回答
  • 2021-02-09 17:11

    If you use an SQL store then any of the common tools for analyzing SQL should work to display the contents of the SQL store. However, owing to the way Core Data handles things behind the scenes, it will be difficult to interpret.

    In order to easily read the data in the SQL store you'll need a specialized tool. I haven't used it yet but Core Data Editor looks useful.

    0 讨论(0)
  • 2021-02-09 17:13

    To view the coredata sql file, you can use any standard sqlite interface. You can use sqlite3 from command line, or use something like Sqlite Browser.

    If you want something specific to Core Data, you can use Core Data Browser.

    0 讨论(0)
  • 2021-02-09 17:27

    The sqllite file is stored within your applications documents folder. If you're running in the simulator, that location will look something like:

    ~/Library/Application Support/iPhone Simulator/User/Applications/1C69B544-510C-47E0-8758-701FB9E259F7/Documents/Locations.sqlite

    (Where the 1C69B544...701FB9E259F7 is a huge random number that's re-generated each time you reinstall the app into the simulator).

    0 讨论(0)
提交回复
热议问题