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

I have a little problem with NSTableView and NSArrayController, this is my delegate method:

- (BOOL)tableView:(NSTableView *)aTableView shouldSelectRow:(NSInteger)rowIndex{

    NSLog(@"Index: %ld",rowIndex);

    if (aTableView == self.tabellaMateria) {
        self.materiaOld = [[Materia alloc] initWithMat:[[self.arrayMaterieController selectedObjects] objectAtIndex:0]];
        NSLog(@"Old mat idMat:%@ titoloMat:%@ iconaMat:%@:",self.materiaOld.idMateria,self.materiaOld.titoloMateria,self.materiaOld.iconaMateria);
    }
    return YES;
}

the problem is that that materiaOld is different to table selected object, where is the problem?

example:materieOld mat1 selected object: mat2.

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.