Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any way to completely remove the comment with the copyright notice when creating a new source code file with Xcode 4?

Insted of:

//
//  MainView.h
//  ProjectName
//
//  Created by First Last Name on 1/2/34.
//  Copyright (c) 2012 Company Name. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface MainView : UIView

@end

I'd like to have:

#import <UIKit/UIKit.h>

@interface MainView : UIView

@end
share|improve this question

1 Answer

up vote 1 down vote accepted

The safest way to do what you want is to create a custom file template. Make a copy of Apple's file template, open the header file, and remove the introductory comments. More detailed information on creating custom file templates is in the following article:

Creating Custom Xcode 4 File Templates

share|improve this answer
Wow, this is so hackish... I think Xcode is the first IDE I ever worked with that doesn't allow the user to modify the templates! – rid Apr 5 '12 at 23:12
You can modify the templates. The problem is your modifications would get overwritten the next time you update Xcode to a newer version. Creating a custom template allows your changes to survive Xcode updates. – Mark Szymczyk Apr 6 '12 at 0:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.