pixelbitlabs
pixelbitlabs

Reputation: 1934

How to save an XCode project as a template to use for other apps?

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

Thanks!

Upvotes: 6

Views: 2292

Answers (1)

djromero
djromero

Reputation: 19641

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

Upvotes: 2

Related Questions