自定义 Xcode 文件创建注释
目标
修改 Xcode 文件创建的自动注释模版,统一创建文件自动注释的格式;
用到的宏定义参考: https://help.apple.com/xcode/mac/9.0/index.html?localePath=en.lproj#/dev7fe737ce0
缺省状态的注释风格
//
// test.cpp
// HttpTest
//
// Created by CortXu on 2024/1/28.
//
修改
1、点击工程,修改右侧 Organization,效果如下
//
// test1.cpp
// HttpTest
//
// Created by CortXu on 2024/1/28.
// Copyright © 2024 HiLive. All rights reserved.
//
2、创建名为 IDETemplateMacros.plist 的文件,按需修改
<plist version="1.0">
<dict>
<key>FILEHEADER</key>
<string>
//
// FileName: ___FILENAME___
// Author: CortXu
// E-mail: [email protected]
// Blog: https://cortxu.com
// Github: https://github.com/hilive
//
// Created on ___DATE___.
// ___COPYRIGHT___
//
</string>
</dict>
</plist>
3、将 IDETemplateMacros.plist 移到 ~/Library/Developer/Xcode/UserData 目录下
4、新建文件效果如下:
//
//
// FileName: test2.cpp
// Author: CortXu
// E-mail: [email protected]
// Blog: https://cortxu.com
// Github: https://github.com/hilive
//
// Created on 2024/1/28.
// Copyright © 2024 HiLive. All rights reserved.
//