当我设置注释行时,如何使XCode缩进//字符?

时间:2015-05-11 23:15:20

标签: xcode

每当我在XCode中缩进某些代码行时,它总是在缩进之前将斜杠字符放在行的最开头。

在:

    if(0 == 0) {
        NSLog(@"Some line of code");
        NSLog(@"Another line of code");
    }

后:

    if(0 == 0) {
//        NSLog(@"Some line of code");
        NSLog(@"Another line of code");
    }

我想要它做的是在缩进之后加上“//”字符,就像地球上所有其他文本编辑一样,这样:

    if(0 == 0) {
        //NSLog(@"Some line of code");
        NSLog(@"Another line of code");
    }

我该怎么做呢?

1 个答案:

答案 0 :(得分:-1)

  1. "命令["直到你的文字附在左边

  2. 添加" //" (命令/)

  3. 终于"命令]"到原来的位置。