Xcode change / delete comment template

I recently learned how to program C. For most of the time, I used the E version of Eclipse. I tried Xcode recently. I am using a Mac with Mac OS X Lion - Xcode version 4.1.

There is one complaint that I have: at the top of every file that I create, there is this small comment section that I want to delete, or better yet, change it.

When I create the file, something like this is placed at the top of the file by default:

// // FILE.c // PROJECT NAME // // Created by Martin Tuskevicius on DATE. // Copyright YEAR ORGANIZATION (my school name for some reason). All rights reserved. // 

Obviously, things in the capitals are replaced by the actual value. For those of you who use or used Xcode to program C - do you know how to change or delete these comments by default?

I really appreciate any help. Thanks!

+7
source share
2 answers

UPDATE

According to @Michael Dautermann's comment below, changing templates in the Xcode.app package is not very good. For more information, check out https://stackoverflow.com/a/166778/ .


You can remove or change the title in File Templates, I use Xcode 4.3, and File Templates are in /Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates/File Templates .

+8
source

You can change it in the Xcode project file. This is my image for the textbook: D Very simple !!! change organization in xcode

+3
source

All Articles