Building the Build System – Part 2 – Project Templates

来源:互联网 发布:mp3定时编辑软件 编辑:程序博客网 时间:2024/06/10 07:51

In Part 1 of our series, you learned how to use basic xcconfig files to manage build configuration in Xcode rather than using the Build Panel. This is useful, but a bit tedious to set up every time you make a new project. What we need is a way to automatically create new projects that have our setup in place already. Wouldn’t it be nice if you could create new Project Templates just like the ones that come with Xcode? You can, and since the release of the iPhone version of Xcode, it’s easier than ever. Let’s make one.

The easiest way to create a new template is to base it off of an existing template. First, let’s get a sense of what a project template is, and how Xcode finds and uses them. Open the following directories to see the default templates:

/Developer/Library/Xcode – Mac /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode – iPhone

As with much of the move in Xcode to /Developer/Platforms, the existing Mac files have been inconsistently transfered, and some are still found in/Developer/Library. Hopefully Apple will get more consistent around this over time.

In these directories, you’ll see several templates that should look familiar under File Templates, Project Templates and Target Templates. Let’s take a look at the iPhone – Application – Window-Based Application template. You should see the following structure:

PROJECTNAME.xcodeprojPROJECTNAMEASIDENTIFIER_Prefix.pchClasses/    _PROJECTNAMEASIDENTIFIER_AppDelegate.h    _PROJECTNAMEASIDENTIFIER_AppDelegate.mInfo.plistmain.mMainWindow.xib

Basically, it looks very similar to an empty project called _PROJECTNAME_ because that’s what it is. You could open this project in Xcode, build it and run it. Be a little mindful of doing this; it will create abuild directory that you’ll want to delete later, but this is basically how we’re going to modify our templates.

The one thing special about the template is a little bit of meta-data stored inside the xcodeproj. Open this in Finder (Ctrl-Click and select Show Package Contents). You’ll see the standard project.pbxproj, but you’ll also see TemplateIcon.icns and TemplateInfo.plist. The first is the icon shown in Xcode, and the latter includes the description of the project (again for the Xcode template chooser screen).

You’ll note the use of _PROJECTNAME_ versus _PROJECTNAMEASIDENTIFIER_. For the majority of projects these are the same. But if your project has characters that would be illegal in an Objective-C identifier but legal in a file name (spaces, numbers, symbols), then those will be removed in the identifier version. This is important in making class names for instance. So if your project name is “My Application”, the xcodeproj will be “My Application.xcodeproj”, but the AppDelegate class header will be “MyApplication_AppDelegate.h”.

These macros (_PROJECTNAME_ and _PROJECTNAMEASIDENTIFIER_) will be substituted anywhere they are found in a filename or within the files. That includes inside of XIB files. So in the MainMenu.xib for a Cocoa project, you can fix the main menu to read “About PROJECTNAME” and it’ll be substituted for you. With NIBs, you couldn’t do this, which is why “NewApplication” is found all over the place in the Mac MainMenu.xib. It’s unfortunate that Apple didn’t fix this when they converted the Cocoa templates to XIBs.

There are several other macros available in project templates. These are not documented as far as I know. I’ve worked them out by looking at the strings in the Xcode framework that provides them, and then testing which ones actually work in project templates (file templates and target templates have slightly different ones).

___UUIDASIDENTIFIER______UUID______YEAR______ORGANIZATIONNAME______FULLUSERNAME______USERNAME______TIME______DATE______PROJECTNAMEASXML______PROJECTNAMEASIDENTIFIER______PROJECTNAME___

Note that while there are DATE and YEAR macros, there are noDAY or MONTH macros. ORGANIZATIONNAME is set by default to__MyCompanyName__. You can fix this by setting it in defaults:

defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{ORGANIZATIONNAME = "My Company"; }'

Walking through it all

Now that we’ve talked it to death, let’s walk through actually doing it based on our worklast time.

  1. Open ~/Library/Application Support/Developer/Shared/Xcode in Finder and make a directory calledProject Templates
  2. Under Project Templates, make a directory called iPhone OS.
  3. Open /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Project Templates/Application in Finder.
  4. Copy (don’t move), Window-Based Application from the /Developer window to~/Library window.
  5. Open the Window-Based Application folder and open ___PROJECTNAME___.xcodeproj in Xcode.
  6. Go back to “Abandoning the Build Panel” and apply the changes there. Or apply whatever changes you want to be in every project. In yourApplication.xcconfig, you’ll want this:
    PRODUCT_NAME = ___PROJECTNAME___GCC_PREFIX_HEADER = ___PROJECTNAMEASIDENTIFIER____Prefix.pch
  7. Quit Xcode
  8. Delete the build/ directory if one was created
  9. Right-click the xcodeproj and select “Show Package Contents”
  10. Delete any .mode1v3 and .pbxuser files that may have been created
  11. Open TemplateInfo.plist in Property Editor and set the description as you like
  12. If you like, replace TemplateIcon.icns with an icon file you like
  13. You can now launch XCode, select File>New Project, and you should see a “User Templates” section with your template.

If you’d like an example of the project template I use, along with all my xcconfig settings, I’ve attached it. We’ll be discussing some of these settings in the future.

原创粉丝点击