我正在使用Xcode 6.2,我想在开头删除有关作者/用户/组织的信息。
E.g。
//
// AppDelegate.h
// SomeProject
//
// Created by Some One on 31.03.15.
// Copyright (c) 2015 Some Organisation. All rights reserved.
//
因此我复制了文件夹
中的文件/Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates/File\ Templates/Source/Header\ File.xctemplate/
到
/Users/my-user/Library/Developer/Xcode/Templates/File\ Templates/Source/Header\ File.xctemplate/
___FILEBASENAME___.h
中的内容
//
// ___FILENAME___
// ___PROJECTNAME___
//
// Created by ___FULLUSERNAME___ on ___DATE___.
//___COPYRIGHT___
//
#ifndef ___PROJECTNAMEASIDENTIFIER_______FILEBASENAMEASIDENTIFIER_______FILEEXTENSION___
#define ___PROJECTNAMEASIDENTIFIER_______FILEBASENAMEASIDENTIFIER_______FILEEXTENSION___
#endif
我将其改为
//
// ___FILENAME___
// ___PROJECTNAME___
//
// Created on ___DATE___.
//
#ifndef ___PROJECTNAMEASIDENTIFIER_______FILEBASENAMEASIDENTIFIER_______FILEEXTENSION___
#define ___PROJECTNAMEASIDENTIFIER_______FILEBASENAMEASIDENTIFIER_______FILEEXTENSION___
#endif
如果我创建一个新的Cocoa Touch类,我总是得到相同的旧标题。我还尝试了其他类别(例如 Cocoa Class.xctemplate , Objective-C File.xctemplate , Objective-C new superclass.xctemplate ,.. 。),但没有改变。我做错了什么或哪个模板是正确的?
链接:
- Change templates in Xcode
- Changing the default header comment license in Xcode
- Xcode change/remove comment template
- Change copyright / top-comment / “header” on ALL new files in Xcode 5
- Remove copyright in Xcode generated source code
但是大部分信息似乎已经过时了。