How to save an Xcode project as a template for use in other applications?

Is it possible to create a template from an existing Xcode project for use again and again, but with different application names?

Thanks!

+6
source share
1 answer

You ask two different questions. First: you cannot. Second: Yes.

AFAIK, you cannot save the Xcode project and get the template automatically. You can use the project as a starting point for a new template.

Creating an Xcode template is a manual process, you will need to rename a lot of things and follow non-documentary naming conventions. The best place to learn Xcode templates is the default templates provided by Xcode.

You can start here: Change Templates in Xcode

+1
source

Source: https://habr.com/ru/post/900121/


All Articles