If I have a one to many relationship, how would I go about populating the NSTableView with such data that is found in an NSArray?
Say I have a data item called "Alphabet", and I want that when a user selects it out of a list, the return value(s) in :
-(id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex
are the letters of the alphabet in different rows, one underneath the other.
Can that be done? Thanks!