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.