Reputation: 212
I have a working iOS application in Xcode, and wanted to change the display name of the application on the phone. When i click on the main project directory in Xcode, a menu opens on the right side of the screen. Under the title "Identity and Type", I tried to change the name to something different. When prompted, I chose to change the references in other files. Now, my file has an error, because my -info.plist file no longer exists (because the project is apparently trying to reference the plist file sharing the original name of my application). When I tried to simply change the name back to the previous one, I get an error that says
"OldProjectName.xcodeproj" couldn't be moved to "ios" because an item with the
same name already exists. To save the file, either provide a different name,
or move aside or delete the existing file, and try again.
I realize this problem is likely trivial, but i'm not entirely familiar with Xcode and i'm concerned that I will delete or move an essential file. For some reason, although I enabled them, I don't have any screenshots I can revert back to. Any suggestions on how to fix this?
Upvotes: 0
Views: 4810
Reputation: 8588
To fix the error, change the name of the project (which is what you changed) back to what it was originally. To answer your question, to change the display name go to the info.plist and change the "bundle display name" to whatever you like.
Upvotes: 1