Reputation: 22820
What's the most efficient way to change my Mac OS X application name in Xcode?
(I know it's easy; I've done it in the past but I can't really remember how... :/)
What I mean :
oldName
.newName
, so that this new name appears everywhere it should be? (Application name, bundle identifier, About dialog, Dock, etc)Upvotes: 9
Views: 9897
Reputation: 3970
Click your project on the left at the top where it list all of the files associated with said project. Press return on your keyboard and simply rename it.
Upvotes: 19
Reputation: 14118
Only change bundle display name in your -info.plist file.
It will update the title of the application written below the application icon. I guess this is what you required.
Upvotes: 8
Reputation: 5761
sincerly I'll go with a grep on the terminal an change all the occurrences by hand.
cd yourprojectdirectory
grep -r oldName .
Upvotes: 0