How to change comment style generated by shortkey in xcode?

I just started using Xcode 4.3, but I don't like the way the IDE comments on a few lines.

When I select more than 1 line, press the short key (command + /), it puts a "//" in front of each line.

Is it possible to use / * * / and // for several lines and one line, respectively?

+4
source share
1 answer

No, using / * * / for multiple lines of code using a shortcut is not possible. You will have to do it manually. And for comments on one line, move the vertical edit bar to a specific line and press ctrl + /.

+1
source

All Articles