每当我在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");
}
我该怎么做呢?
答案 0 :(得分:-1)
"命令["直到你的文字附在左边
添加" //" (命令/)
终于"命令]"到原来的位置。