Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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??

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.