views:

91

answers:

1

Is there a way to automatically uppercase comments in Xcode? Either when typing individual comments or globally after the fact?

+1  A: 

Besides the WHY WOULD YOU WANT TO DO THAT?! question:

There is nothing built into Xcode to do this for you.

I would start with a script designed to do something similar like strip out C comments from code http://stackoverflow.com/questions/241327/python-snippet-to-remove-c-and-c-comments is a good starting point. Then adapt that to write a new file with your special comments.

Steve918