Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>Does this sound like the best way to go?</strong></p> <p>I believe it depends on what kind of information you want to access and if you need to update this information (add new information, modify it, delete, etc). </p> <p>If you just want to read the data and do something with it, check out <a href="http://www.appcoda.com/enhance-your-simple-table-app-with-property-list/" rel="nofollow noreferrer">Property Lists</a> and <a href="https://www.raywenderlich.com/725/xml-tutorial-for-ios-how-to-read-and-write-xml-documents-with-gdataxml" rel="nofollow noreferrer">XML</a>. In case the data is structured somewhat like a relational database and it is necessary to modify it, check out Apple's <a href="https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/CoreData/index.html" rel="nofollow noreferrer">Core Data</a> framework.</p> <p><strong>Is this an application resource?</strong></p> <p>Yes, it kind is, don't worry about the nomenclature so much but for more clarification check out Apple's own <a href="https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/LoadingResources/Introduction/Introduction.html" rel="nofollow noreferrer">guide</a> about resources.</p> <p><strong>Also I'm not sure what it means by "you must either copy the whole store to a suitable location" - is this not it?</strong></p> <p>You can load the store from multiple locations (folders, different files, etc), this just means that you should pick the best that suits your application. </p> <p>Note, the files you import to your project are stored in the application's bundle and you can't (as far as I know) modify them. So, if you choose to include a Core Data store file, you need to copy the store from the bundle to a location of your preference (ex: the documents folder).</p> <p><strong>How do I access the information in the DB in my .m files?</strong></p> <p>It depends on your pick. As it looks like you're more interested in using Core Data, start by looking at the link I've provided above and searching some tutorials.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload