Auto-align columns by colons in Xcode and Objective C?

Is there a macro or preference parameter that automatically aligns method parameters along columns and colons in Xcode?

Basically a shortcut for this:

  [object methodWithParam:theParam another:theOtherValue something:theSomethingValue else:theElseValue];

      

automatically:

  [object methodWithParam:theParam
                  another:theOtherValue
                something:theSomethingValue
                     else:theElseValue];

      

Is it possible that this works with code completion? In other words, when I fill out the method, does it automatically transfer the formatting to this style? What about existing code? Can I put my caret inside a method, press a keyboard shortcut and format the parameters automatically?

+2


source to share


1 answer


It doesn't have built-in support for this. See the answers in this question at fooobar.com/questions/39140 / ... for some advice.



0


source







All Articles