i have developed my app in xcode for iPhone , in start i have just named it without secnec now i want to change my app name i have replace my old app name with new one as i have found the name in my app , but its still giving me one error...

Desktop/New name/old name_Prefix.pch: No such file or directory

when i have change oldname_prefix.pch with newname_prefix.pch .. any idea ..

link|improve this question

27% accept rate
Do you want to change the application name or project name? Its confusing that title is "XCode Project name" and your description says "app name".......... – Satyam svv Feb 10 '11 at 6:27
feedback

5 Answers

For Xcode 4 or later:

  • Open a project
  • Select Project Navigator
  • Highlight project name
  • Single click on project name

    enter image description here

For Xcode 3:

  • Open a project > Menu > Project > Rename ...
link|improve this answer
This seems simpler. – Quakeboy Feb 10 '11 at 6:42
thanx sir , its work ... – Haseeb Feb 10 '11 at 7:07
1  
@Haseeb Please mark as Answer, if it worked – Quakeboy Feb 10 '11 at 7:23
Don't see this option in the menu. – Raffi Khatchadourian Dec 16 '11 at 18:48
@Raffi Khatchadourian please see answer updated for Xcode 4 – ohho Dec 19 '11 at 2:38
show 2 more comments
feedback

There is no need to change the name of the project in order to change the display name of the application (which is what you see on the home screen of the iOS device, in iTunes, etc.). Simply change the "Bundle display name" in your info.plist from the default "${PRODUCT_NAME}" to whatever you want it to be. The name of your project is invisible to users, they only see the "Bundle display name."

link|improve this answer
That's exactly what I was looking for. Thanks! – Fernando Mar 17 '11 at 20:16
feedback
  1. On the left side expand Targets
  2. Double click on your target and then select build tab in the newly opened window
  3. on the top right there is a search box. Type - "Product Name"
  4. Now look below, under packaging section, you will see Product Name
  5. Change it and clean rebuild, your new app name should be changed by now.
link|improve this answer
feedback

Goto youname-Info.plist

Change Both

Bundle name and Bundle display name to your preferred file name.

Done.

link|improve this answer
feedback

I am using xcode 4.3.1 and tried to change product name as Quakeboy said above in the bundle setting, but it led to reading error. I was stuck in this error for an hour and now it is working well. I simply made the product name blank then retype the older name that I had before. building succeeded again!

Note to anyone who like to change project name : you don't have to change the project file name the bundle display name will be display to users so just don't hang out with this issue too much. can be wasting time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.