How to make Xcode put starting brace on new line i

2020-03-12 04:09发布

问题:

I have noticed that the coding style in Swift appears to be to put braces on the same line as a method signature or if statement etc. Without getting into a debate about which is right or wrong, my aim is simply tom get Xcode to put the braces on a new line when it does its auto completion and for the new file templates.

I've tried the advice here and it doesn't work: https://forums.developer.apple.com/thread/23087

I'm using Xcode 8.1 on Sierra.

Has anyone else been able to get this to work?

Thanks, Alan

回答1:

You can use below methods in conjunction to accomplish this task.

ClangFormat and Uncrustify

Above method will only change the default statement templates and not the inbuilt methods formatting. (i.e autofilled viewDidLoad() method will still have the braces in the same line.) For this you should consider using these plugins. They have options to save the file with specified format.

(UPDATE Snippet Edit no longer works)

Snippet Edit

Snippet Edit is a small program that is used to edit the Xcode's standard code snippets. We have to do this way because there is no direct way to change the code style in Xcode settings and XCCodeSenseFormattingOptions is not supported since Xcode 4

You can follow below screenshot for reference. Remember to restart Xcode once you are done with editing.