Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are Xcode 8 templates stored?

I've browsed sources that say Xcode looks for templates at:

~/Library/Developer/Xcode/Templates

but I see no such directory. Is there a new location? I want to make a custom template.

like image 572
Aaron Avatar asked Nov 01 '16 00:11

Aaron


People also ask

How do I change created in Xcode?

you can try: System Preferences --> Users & Groups --> choose current User --> unlock -->right tap current User --> Advanced option --> change you full name & above account name to your want, save ,that is ok! I get it from How does Xcode know who the the project was "created by"?


1 Answers

There are multiple Library folders that Xcode.app searches.

Apple stores the default Templates that come with the app here:

/Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates

You can add your own custom Templates to one of the standard Library folders, most likely you want "per user", which is here:

~/Library/Developer/Xcode/Templates

But you could also choose "/Library" instead of "~/Library" if you want your templates to be accessible between multiple user accounts.

like image 191
original_username Avatar answered Nov 12 '22 04:11

original_username