删除Xcode生成的源代码的版权

时间:2012-04-05 06:37:11

标签: xcode xcode4

使用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

我想:

#import <UIKit/UIKit.h>

@interface MainView : UIView

@end

1 个答案:

答案 0 :(得分:2)

执行所需操作的最安全方法是创建自定义文件模板。复制Apple的文件模板,打开头文件,并删除介绍性注释。有关创建自定义文件模板的更多详细信息,请参阅以下文章:

Creating Custom Xcode 4 File Templates