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

萝らか妹 提交于 2019-11-30 23:46:27

问题


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.



来源:https://stackoverflow.com/questions/41076439/how-to-make-xcode-put-starting-brace-on-new-line-in-swift

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!