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

My question is very much like Bind a NSSet representing a to-many relationship to the selection of a NSArrayController

This is a working app with multiple versions in the iOS App store and now I am writing this for the Macintosh.

I have a Core Data object graph with several entities. One is called Player and another is called Tour. Tours and Players may exist independent of each other.

When the user wants to assign / associate a player with a specific tour in order to score their results, using the didSelect method in iOS, I merely added or removed players from a NSSet on the tour (relationship) based upon the touch .

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath 

...

if ( [tourTeam.players containsObject:player] ) {
   [tourTeam removePlayersObject:player];
   [player removeTourTeamsObject:tourTeam];
} else {
   [tourTeam addPlayersObject:player];
   [player addTourTeamsObject:tourTeam];
}

Then in cellForRowAtIndexPath

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

I would display a check to indicate association with the tour.

if ( [tour.tourPlayers containsObject:player] ) {
    cell.accessoryType = UITableViewCellAccessoryCheckmark;
} else {
    cell.accessoryType = UITableViewCellAccessoryNone;
}

I have learned how to make Parent - Child relationships using NSArrayController and NSTableView and Core Data, actually, I'm been blown away how fast coding is using Cocoa for Mac OS X. When I think about all the drivel I had to go through in CocoaMobile, it's amazing.

I've learned that ValueTransformations can do nearly everything I need to do to translate various database encodings into UI-accessable elements, very sweet and concentrates the legacy weirdness into a single, obvious area (such as sometimes a string is storing a BOOL and then it evolves into a three-state ivar, etc.).

But this current issue with Cocoa has me stumped.

Summed up, First - loading up the nstableview... I want to bind a tableview column that is displaying players using it's own arraycontroller (playerController), to the "selection" of the Tours array controller on the same window. Using a ValueTransformer (or any other recommend method), I need to pass in selected player object and ALSO the NSSet relationship object so that I can test for membership (as above) within the ValueTransformer. If I find set membership, I will return a 1 otherwise, I will return a 0. This will drive a Check Cell column to give me the result I want.

Next to toggle the association from user interaction, I've created IBOutlets to the NSTablevView that is bound to the players and using the following method, I can set and remove membership fairly easily.

-(IBAction)rowSelectedInActivePlayersTableView:(id)sender{
    NSInteger selectedRow = [activePlayersTableView selectedRow];
    NSInteger selectTourRow = [toursController selectedRow];

So it all comes down to loading the check column display on launch (and of course, keeping it up to date);

I really think it comes down to passing two values (current selection for two array controllers) into the ValueTransformer.... Can it be done?

Thanks for any help and best regards... Jim

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.