I'm using the auto creation of Xcode and would like to have the function-braces in a new line. I know this question was asked years before, but there is no working solution for me. I already set an option in the preferences, but I think this doesn't work for the templates. Preferences
currently:
override func viewDidLoad(){
super.viewDidLoad()
// Do any additional setup after loading the view.
}
Should be like this:
override func viewDidLoad()
{
super.viewDidLoad()
// Do any additional setup after loading the view.
}
How to fix this?
Thanks in advance!