当 Xcode 创建一个新文件时,标题中总是有这样的内容:
// Copyright 2009 __MyCompanyName__. All rights reserved.
我该如何改变呢?
当 Xcode 创建一个新文件时,标题中总是有这样的内容:
// Copyright 2009 __MyCompanyName__. All rights reserved.
我该如何改变呢?
您可以在 Xcode 项目文件中更改它。这是我的教程图片。
Xcode 将尝试从您在系统地址簿中的条目中提取此信息 - 如果您无法在此处修改它,请尝试使用此命令覆盖:
defaults write com.apple.xcode PBXCustomTemplateMacroDefinitions '{ ORGANIZATIONNAME = "ORGNAME";}'
As a follow-up to the answer above, for documentation of that and many other preferences see the Xcode defaults reference
从 xcode 3 开始,如果 com.apple.Xcode.plist 中缺少“PBXCustomTemplateMacroDefinitions”键,它将使用地址簿卡中的“公司”字段。
默认写入 com.apple.Xcode PBXCustomTemplateMacroDefinitions ' { "ORGANIZATIONNAME" = "javacom"; } '
进入终端。