In Xcode 3.x I could do Edit > Sort > By Name. I cannot find this functionality in the new version of Xcode. Anyone know how to accomplish this?

link|improve this question

feedback

5 Answers

This is a missing feature (a major one, IMO) from Xcode 4.

EDIT: As of 4.2 it's back in!!!

link|improve this answer
1  
This really should be a comment. – Daniel A. White Mar 11 '11 at 17:16
16  
@Daniel: It seems like it answers the question in this case. – Bill the Lizard Mar 11 '11 at 17:38
1  
It's really freaking annoying. It needs an option to keep them in alphabetical order too. – Bearddo Mar 11 '11 at 20:13
4  
Yes, this is pathetic. It was pretty insufferable that in Xcode 3 you had to continually trigger a sort by hand, in every file group, over and over. Now you can't do it at all? WTF? – Oscar Mar 30 '11 at 10:16
2  
Unreal. Seems like the most basic thing a file manager should do! – typeoneerror Apr 11 '11 at 21:26
show 2 more comments
feedback

It IS there in Xcode 4.2 (not sure about earlier versions though.)

y

link|improve this answer
+1 Hey! It does work! – James Zaghini Jan 20 at 5:58
Yes, now it's there. – Eddie Gasparian Mar 19 at 23:47
feedback

From my previous answer :

This was, sadly, left out of Xcode4 -- I loved that feature. You can fix it though. Here's how:

First, jump over to Apple's Bug Reporter and file a feature request. Seriously, go ahead. I'll wait until you are back.

Back? Great! We are one step closer to getting that feature. Nice job!

Now for the poor man's substitute until Apple fixes it: Re-organize your project so most of your files sit in sub-directories (real ones, not Xcode logical "group" folders). Typically I have my files arranged in Classes, Controllers, Resources, Images, Foundation, and Supporting files. This covers about 95% of all my files. Whenever you need to reorder the files in Xcode, simply remove a folder reference and add it back -- the files in that folder will once again be in alphabetical order.

Admittedly, not as nice as in Xcode3, but once you have your project folder structure organized, it just takes a moment to re-alphabetize things without too much effort.

link|improve this answer
feedback

It's a missing feature, if you want to sort permanently. However, there is a feature to view items sorted temporarily, namely in the jump bar:

Tip: Hold down the Command key when selecting a level in the path menu to view its items alphabetically.

http://developer.apple.com/library/mac/#recipes/xcode_help-jump_bar/Recipe.html

link|improve this answer
useful tip, but wow that's obscure! i'm a fan of many of apple's many hidden shortcut keys and whatnot, but I'd never have thought to try that out... – drfrogsplat Jun 16 '11 at 3:43
1  
Really useful tip/workaround for a glaring functional omission. – Shane Jun 29 '11 at 6:29
feedback
  1. Quit your project
  2. Backup your project.pbxproj just in case
  3. find the "children" session of your most annoying directory
  4. sort it somehow (I used linux sort -k3)
  5. Open your project.

Worked for me :P

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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