Source templates use this header:
// Created by ___FULLUSERNAME___. // Copyright ___YEAR___ ___ORGANIZATIONNAME___. All rights reserved.
Double underlined words are references to placeholders. There are 18 that I know of, and you can add more to your template definition. These parameters can be further modified using parameter variables. The ones you see above:
___FULLUSERNAME___ Full name of the user (first name + last name).__YEAR__ Current year.___ORGANIZATIONNAME___ The name of your organization, as shown in your address book. You can change it for each project by selecting Project node and setting it to Organization.
After creating a project, the title becomes plain text and is never updated.
For future projects, I suggest you duplicate templates and make changes there. Otherwise, you risk screwing up the original templates or rewriting your changes to Xcode.
Originals:
/Developer/Library/Xcode/Templates/ /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Templates
And I made a copy:
mkdir -p ~/Library/Developer/Xcode/Templates/File\ Templates/Jano mkdir -p ~/Library/Developer/Xcode/Templates/Project\ Templates/Jano
where "Yano" is my user and it will be displayed as a category of a template on the screen for selecting a new project.

Then you edit the header file manually from the file or from bash using sed.
source share