How to make Xcode put starting brace on new line in Swift?

后端 未结 1 910
青春惊慌失措
青春惊慌失措 2021-01-11 18:08

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 whi

相关标签:
1条回答
  • 2021-01-11 18:29

    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.

    0 讨论(0)
提交回复
热议问题