11

当 Xcode 创建一个新文件时,标题中总是有这样的内容:

//  Copyright 2009 __MyCompanyName__. All rights reserved.

我该如何改变呢?

4

5 回答 5

10

您可以在 Xcode 项目文件中更改它。这是我的教程图片。 在此处输入图像描述

于 2013-06-11T07:26:40.937 回答
9

Xcode 将尝试从您在系统地址簿中的条目中提取此信息 - 如果您无法在此处修改它,请尝试使用此命令覆盖:

defaults write com.apple.xcode PBXCustomTemplateMacroDefinitions '{ ORGANIZATIONNAME = "ORGNAME";}'

于 2009-07-15T17:46:51.347 回答
8

As a follow-up to the answer above, for documentation of that and many other preferences see the Xcode defaults reference

于 2009-07-15T17:49:45.337 回答
1

从 xcode 3 开始,如果 com.apple.Xcode.plist 中缺少“PBXCustomTemplateMacroDefinitions”键,它将使用地址簿卡中的“公司”字段。

于 2009-07-15T18:17:50.990 回答
0

默认写入 com.apple.Xcode PBXCustomTemplateMacroDefinitions ' { "ORGANIZATIONNAME" = "javacom"; } '

进入终端。

于 2009-07-15T18:09:44.610 回答