Last Updated: February 25, 2016
·
413
· jun1st

Snippet Edit for XCode

I always feels uncomfortable with the default code format from Xcode, such as

if(condition){
  //do something 
}

most of the time, I will move the first brace to a new line,

if(condition)
{
    //do something
}

It makes the codes more readable to me.

It's tedious work to change the default snippets, and also it's not that easy. Well, it was not that easy.

Now, with the help of Snippet Edit, change them to the way you want.

Picture