Dr.Kameleon
Dr.Kameleon

Reputation: 22820

Change application name in Xcode / Cocoa

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 :

Upvotes: 9

Views: 9897

Answers (3)

Hackmodford
Hackmodford

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

Mrunal
Mrunal

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

pna
pna

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

Related Questions