I'm a newbie of cocoa for mac and I have some question, I want to do an app for myself where I manage a database, on mainmenu.xib window I add 3 arraycontroller for 3 nstableview, I get some data from an sqlite database and I bind it with my table. The first question is, is the correct way for have 3 table view with different data?
Second question, I need to add a value to my table and than save it on the database, the query is not the problem, for add a value I create this method:
- (IBAction) addNewObject:(id)sender{
Car *car = [[Materia alloc] init];
[self.arrayController addObject:car];
}
that add an empty object, now my question is, how can I edit the object from the tabe anda save it on the database? There is a method like "celldidendediting" for do the query??