• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Possibly dumb NSTableView problem
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Possibly dumb NSTableView problem


  • Subject: Re: Possibly dumb NSTableView problem
  • From: rob colonna <email@hidden>
  • Date: Sun, 1 Apr 2007 13:27:56 -0400

That's pretty hard to do, as it's lengthy, but I will try to boil it down a bit. These are the things I'm doing on SelectionDidChange to make sure that whatever was working with the data from the one selection resets to be ready to work with the new selection (i.e selects nothing or just the first row of a table). All of this completes successfully. Is there anything else I can do to NSTableView to essentially return it to a clean, non-interacted-with state?

- (void)tableViewSelectionDidChange:(NSNotification *)aNotification {
//irrelevant stuff
if(lastAccount!=[accountsListingTable selectedRow]) {
NSLog(@"changing account");
[mainAccountTable scrollRowToVisible:0];
[mainAccountTable setNeedsDisplay:YES];
[mainAccountTable selectRowIndexes:[NSIndexSet indexSetWithIndex:0] byExtendingSelection:NO];
[self generateOnTheFlySelections]; //processes some stuff based on selected row or rows
lastAccount=[accountsListingTable selectedRow]; //keeps track of whether or not a change has been made in the selection table
[self rollBackUpdate]; //updates a user-interface item based on the new data
[rollbackSlider setIntValue:[rollbackSlider maxValue]]; //updates a user-interface item based on the new data
[self updateCategoryMenus]; //updates a user-interface item based on the new data
}
...
}


The error message I get in the console is
2007-04-01 13:16:06.928 spendthrift3[3133] *** -[NSCFArray objectAtIndex:]: index (20) beyond bounds (4)
after switching from a data set with many records to one with only four. The offending index is not necessarily the selected one; as near as I can tell, it has to do with the rows that are displayed in the table view (row 20 was at the top of the table when I triggered that error, row 40something was selected). This made me think that it was in my table data source methods for a while, but they all seem to be working okay. Other than that, I went through every objectAtIndex I had that ran in the display-update sequence, and they all seem to come off okay. This is why I was somewhat curious as to exactly what an NSTableView might be doing after selectionDidChange. Unfortunately, the rest of the code is sufficiently scattered that it'd be difficult to tell a coherent story of what's going on, but if you have any ideas, I appreciate it.


Thanks for your time,
rob colonna




On Apr 1, 2007, at 11:47:48, I. Savant wrote:

On Apr 1, 2007, at 11:37 AM, rob colonna wrote:
Or is it more likely that there lurks something in my code that's still referring to an item 11 selected, out of a possible 10?


  That sort of depends on your code. Perhaps you should post it?

--
I.S.




____________________________________ rob colonna http://blackllamafaction.org/ _______________________________________________

Cocoa-dev mailing list (email@hidden)

Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Follow-Ups:
    • Re: Possibly dumb NSTableView problem
      • From: "I. Savant" <email@hidden>
References: 
 >Possibly dumb NSTableView problem (From: rob colonna <email@hidden>)
 >Re: Possibly dumb NSTableView problem (From: "I. Savant" <email@hidden>)

  • Prev by Date: Creating a 30fps QTTime structure?
  • Next by Date: Re: Possibly dumb NSTableView problem
  • Previous by thread: Re: Possibly dumb NSTableView problem
  • Next by thread: Re: Possibly dumb NSTableView problem
  • Index(es):
    • Date
    • Thread