XCode 格式化

XCode Formatting

Xcode 是否有捷径或一些快速方法来格式化此代码:

if(x==10){
if(y=100){
//Do this
}
}

为此:

if(x==10){
    if(y=100){
        //Do this
    }
}

有时代码的逻辑会有点难以阅读。我似乎花了很多时间使代码更易于阅读。

Select 文本然后按 ctrl + I 即可完成您想要的操作

Is there a short cut or some quick way for Xcode to format this code

是。 使用编辑器->结构->重新缩进命令(默认的等效键盘是 control-I)。如果您没有任何 selected,我认为它只是将带有插入点的行缩进。如果您 select 多行并使用该命令,它将执行所有 selected 行。

如果您使用 Swift 进行开发

你可以试试我的插件:Swimat

它可以将您的代码格式化为:

if (x == 10) {
    if (y = 100) {
        // Do this
    }
}

有关详细信息,请参阅 https://github.com/Jintin/Swimat