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