hi i am writng an iphone app and need a bit of help.. i have this uitableview which displays data that is contained in a nsmutable array.. this data is retrieved via some operations therefore amount of data is not the same every time...
what i want to know is if i had something like:
NSMutableArray *mArray;
how would i go about storing and loading the 'mArray' from an sqlite database..
Further info as requested:
@Caleb
@westsider
Array Contents: The contents of the array are simple module names (i.e subjects that a student learns on a course), that are retrieved from a .ics calendar file with some parsing operations.. i end up with an array that contains the data i want and then i display it using a tableview..
Basically i need to initially save the module names that are stored in the array so that the next time the user opens the application, the module names are still there..
Why Core Data When the user selects a cell in tableview (i.e. selects a module) i want to push another view controller that displays the module name where the user can add other data/strings that should be saved..