vote up 0 vote down star

I'm using a Table View in a Cocoa application. I have set the double click action to do the following method when it occurs:

- (void)doubleClickInTable:(id)sender {
      int rowIndex = [sender selectedRow];
      if (rowIndex != -1) {
        [userEditController setData:[[self users] objectAtIndex:rowIndex]];
        [self showUserEditPanel];
    }
}

As you can see, the EditController receives the object that is being edited. This object is the object that is located at rowIndex of the source array. This works very well most of the time, but once I started testing the sorts it is setting the wrong object. This is because the index of the clicked row in the table is different then the source array due to the sort moving rows around.

How do I fix this issue?

flag

1 Answer

vote up 2 vote down check

You could create a sorted array using the same sort descriptors, and retrieve the object at rowIndex in that. The other way, if you're using an array controller, would be to retrieve the object at that index in the controller's arrangedObjects array, which is already sorted (hence its name).

link|flag
I recommend using NSArrayController as Peter mentions. – sbooth Mar 26 at 0:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.