How do I set a default sort order for an NSTableView? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T15:24:26Zhttp://stackoverflow.com/feeds/question/388088http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/388088/how-do-i-set-a-default-sort-order-for-an-nstableview2How do I set a default sort order for an NSTableView?Dustin2008-12-23T03:23:28Z2008-12-23T17:27:42Z
<p>I've got a cocoa app that's got a TableView with bindings to a model through an NSArrayController.</p>
<p>The app works as I want, but the default sort order of the table is wrong.</p>
<p><img src="http://public.west.spy.net/BuildWatch.png" alt="buildwatch" title="" /></p>
<p>I typically start the program and click on the last header twice to get it sorting the right way. Is there a way in the nib/bindings/whatever to specify the default sort order, or to programatically tell it to do what would happen if I clicked there twice? Or even just remember the previous sort order?</p>
http://stackoverflow.com/questions/388088/how-do-i-set-a-default-sort-order-for-an-nstableview/388169#3881693Answer by Nathan Kinsinger for How do I set a default sort order for an NSTableView?Nathan Kinsinger2008-12-23T04:23:35Z2008-12-23T04:23:35Z<p>Look at <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSSortDescriptor_Class/Reference/Reference.html" rel="nofollow">NSSortDescriptor</a>.</p>
<p>You can set it up using -setSortDescriptors: on the NSTableView. Or you can put the sort descriptors in an ivar and bind them with the Sort Descriptor binding in IB.</p>
http://stackoverflow.com/questions/388088/how-do-i-set-a-default-sort-order-for-an-nstableview/388214#3882141Answer by sbooth for How do I set a default sort order for an NSTableView?sbooth2008-12-23T05:01:50Z2008-12-23T05:01:50Z<p>I typically do this sort of thing in -awakeFromNib. Suppose your NSWindowController subclass has the IBOutlet _arrayController set to the NSArrayController in question, and that your model possesses the property buildETA:</p>
<pre><code>NSSortDescriptor *buildETASortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"buildETA" ascending:NO];
[_arrayController setSortDescriptors:[NSArray arrayWithObject:buildETASortDescriptor]];
[buildETASortDescriptor release];
</code></pre>
http://stackoverflow.com/questions/388088/how-do-i-set-a-default-sort-order-for-an-nstableview/389522#3895222Answer by Peter Hosey for How do I set a default sort order for an NSTableView?Peter Hosey2008-12-23T17:27:42Z2008-12-23T17:27:42Z<p>Today (seemingly by coincidence), Simone Manganelli published <a href="http://homepage.mac.com/simx/technonova/software_development/sort_descriptors_nstableview_bindings_a.html" rel="nofollow">a blog post with the solution</a>.</p>