使用 Xcode 4 创建新的源代码文件时,有什么方法可以完全删除带有版权声明的注释?
安装:
//
// 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