如何更改 Xcode 4 中版权模板中的公司名称?
有谁知道如何更改 Xcode 模板中的版权?也就是说,在新文件的顶部写入:
// Copyright 2011 {Company Name}. All rights reserved.
在以前的 Xcode 版本中,您可以通过在终端中运行以下命令来更改它:
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = “{Company Name}";}’
在 Xcode 4.0 中,此方法不再有效。
Does anyone know how to change copyright in the templates for Xcode? That is, at the top of a new file it writes:
// Copyright 2011 {Company Name}. All rights reserved.
In previous Xcode versions you could change it by running the following command in the terminal:
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = “{Company Name}";}’
In Xcode 4.0 this method no longer works.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
Xcode 4(及更高版本)根据每个项目存储此信息。
如果您在项目导航器 (Cmd-1) 中选择项目并打开文件检查器 (Cmd-Opt-1),您将在“项目文档”下看到“组织”字段。
Xcode 4 (and above) stores this on a per-project basis.
If you select the project in the Project Navigator (Cmd-1) and open the File Inspector (Cmd-Opt-1), you'll see a field for "Organization" under "Project Document".
您可以在此处更改 Xcode 中的版权模板:
Project Navigator ->文件检查器 -> “组织”。
You can change the copyright template in Xcode here:
Project Navigator -> File Inspector -> "Organization".
__MyCompanyName__
很丑(或者如果您不是为个人资料中设置的公司编码),让我们更改它。在左侧的
Project Navigator
中单击您的项目根目录启用您的突出显示项目根目录时,右侧的实用程序视图
选择
文件检查器
,而身份显示您的项目名称
。在
项目文档
下是一个名为组织的文本字段。这是设置所需值的正确位置。__MyCompanyName__
being ugly (or if you aren't coding for the company set up in your profile), let's change it.Click on your project root in the
Project Navigator
on the leftEnable your Utilities view on the right while the project root is highlighted
Select the
File Inspector
, while the Identity displays yourProject Name
.Under
Project Document
is a text field called Organization. That's the proper place to set the value you want.您可以在
/Developer/Library/XCode/Templates/
中找到模板文件You can find the template files in
/Developer/Library/XCode/Templates/
只需转到 Mac 上的地址簿应用程序,然后更改您自己的地址卡下列出的公司名称即可。
Simply go to the Address Book application on your Mac and change the company name that is listed under your own address card.