6

Is it possible to create a template from an existing XCode project to use again and again but with different app names?

Thanks!

pixelbitlabs
  • 1,934
  • 6
  • 36
  • 65
  • 1
    Check this link [Cocoa dev: Design your own Xcode project templates](http://arstechnica.com/apple/guides/2009/04/cocoa-dev-design-your-own-xcode-project-templates.ars) – beryllium Oct 26 '11 at 11:18

1 Answers1

1

You're asking 2 different questions. First: You can't. Second: Yes.

AFAIK you can't save an Xcode project and get a template automagically. You can use a project as a starting point for a new template.

Creating an Xcode template is a manual process, you'll need to rename lots of stuff, and follow undocumented naming conventions. The best place to learn about Xcode templates is the default templates provided by Xcode.

You can start here: Change templates in Xcode

Community
  • 1
  • 1
djromero
  • 19,551
  • 4
  • 71
  • 68