Hello guys. Is there anyone who knows a code formatting library for XCode? the Project I am working changed so many developers and there is no a good format for the files. Some codes look like this
Some others look like this
Same for methods also. I want to make everything standard. So is there any library that can make it for me in XCode?
Code:
if (condition1) {
} else {
}
Some others look like this
Code:
if(condition)
{
}
else
{
}