Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XCode 4.2 Rename Target

Tags:

xcode

ios

iphone

I am trying to create a LITE version of my iPhone app by using different targets. So I have duplicated the release target 'Checklists' and it will name it 'Checklists copy'. I have managed to change the name of the actual .app that is created but not the target name. Any ideas?

like image 417
craig1231 Avatar asked Dec 30 '11 16:12

craig1231


1 Answers

So the .app is named via the product name. The target name is an identifier for the build settings, which are actually built using a scheme. The name you see when selecting what to build is a scheme, and you can rename those by clicking on the bar and going to "manage schemes".

To rename the target you just click on the name and it will turn into an edit box.

Targets

like image 175
Michael Merickel Avatar answered Jan 02 '23 05:01

Michael Merickel