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

Once I start editing my code and adding for loops or if then statements my code indentation is whacked because the previous code maintains its former indentation instead of adjusting automatically.

In Visual Studio you can highlight code and select 'format selection' to fix these issues - is there anything similar in Xcode?

share|improve this question

3 Answers

up vote 18 down vote accepted
  1. select text
  2. right-click
  3. there's a "Re-indent selection" item in popup menu

In XCode 4 there is one more step: 1. select text 2. right-click 3. Click on "Structure" 4. there's a "Re-indent selection" and other options in popup menu

share|improve this answer
  1. select text
  2. press Control-I (the default keyboard shortcut)
share|improve this answer

These solutions re-indent text to the default xCode behaviors. To change these behaviors, go to xCode (v.4) > Preferences > Text Editing. Then to Indentation Tab.

share|improve this answer
1  
Exactly what I was looking for... and yet not... I was hoping I could tell Xcode to do things like indent private: and public: inside of a C++ class... instead it aligns them underneath the class keyword, but I see no such option. – ArtOfWarfare Jan 24 at 17:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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