Hi - is there any function (or AppleScript) to automatically reformat code in Xcode? Properly indenting code blocks, turning method calls into easy to read lines such as:
to
etc?
Code:
[obj method:xyz withPara1:aaa withPara2:bbb withPara3:ccc];
to
Code:
[obj method:xyz withPara1:aaa
withPara2:bbb
withPara3:ccc];
etc?