const char *sqlSubCountries="SELECT subCountryID,subCountryName,subCountryComment,image,priority,hasRegions,navigationKey\
FROM subCountries\
ORDER BY priority ASC";
sqlite3_stmt *statement;
int sqlResult = sqlite3_prepare_v2(database, sqlSubCountries, -1, &statement, NULL);
this is just an code example. How can I use the views stored in the sqlite (or any other) database in objective-c code?
You have a long way to go, but you need to learn to archive your objects then save them as binary data in your SQLite database. Look for FMDB on github for a good Objective C sqlite3 layer.
I’d get stuck into learning the ins and outs of the Cocoa NSCoding protocol, and read the “Archives and Serialisation Programming Guide”.