Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My old name consisted of a camel case type name similar to this

MyApp

I then changed it to

Myapp 'notice the A is now non-caps'

I changed this by clicking MyApp name in the navigator menu and changing it, up came a help box asking me to do system wide changes I clicked YES!

but now when I build this application its saying the name of my app is:

Myapp-temp-caseinsensitive-rename

I am now wondering how do I get rid of the -temp-caseinsensitive-rename portion?

share|improve this question
Have you checked the product name in build settings? Is it pointing to Myapp? – ACB Oct 11 '12 at 21:28

1 Answer

up vote 14 down vote accepted

Check the product name in build settings and make sure everywhere it is Myapp. If that is done,

  • Close your project -> go to finder.
  • Right click on your .xcodeproject file and click on show package contents.
  • Then right click on your project.pbxproj and open it in some text editor.
  • Then search for Myapp-temp-caseinsensitive-rename and manually rename it.
  • Save it after changing and then reopen the project.

Make sure you have taken a back up of your project before doing this.

share|improve this answer
dont listen to my last comment.. found another 12 entries.. I fould that they differe bettween and underscore and a hyphen... bloody things – HurkNburkS Oct 11 '12 at 21:51
2  
ledgen.. took abit of work.. tried it a couple of times... the easiest thing to do in the end is to change the name completely from its initial value, Then change it back to the same name with the case difference.. that way once you change the things needed to be changed in xcode like target etc you follow your instructions but instead of having to remove all that crap about caseinsesnsitive etc etc.. you just change the case of the letter or letters in question. .. and everything is names as it should be. – HurkNburkS Oct 11 '12 at 22:09
1  
great answer, thanks! – edzio27 Feb 18 at 10:01
I found some of these rogue strings inside a .xib file as well. Worth checking those with an editor, too. – ghr Feb 19 at 7:16
1  
You'll also probably need to rename the yourApp-Info.plist and yourApp-Prefix.pch files as well. – TimD Mar 1 at 11:06
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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