How to change the name of an iOS app?

后端 未结 30 1122
被撕碎了的回忆
被撕碎了的回忆 2020-11-22 08:11

I began an iPhone project the other day with a silly development code name, and now I want to change the name of the project since it\'s nearly finished.

But I\'m n

相关标签:
30条回答
  • 2020-11-22 08:47

    In Xcode 3.2 just select the Project entry in the Groups & Files panel, then select the menu item Project -> Rename… Worked for me.

    0 讨论(0)
  • 2020-11-22 08:48

    Xcode 7/8? It's in the plist that your target uses

    0 讨论(0)
  • 2020-11-22 08:48

    For sake of gathering all relevant information in one place, here is the official answer to this question - and it is the only one that worked for me on Xcode 5.1.1

    Just use the Identity and Type pane in Xcode.

    Use Identity and Type pane in Xcode

    0 讨论(0)
  • 2020-11-22 08:48

    For Xcode 11, if you want to change the App Display Name then simply go to plist and simply replace value of CFBundleDisplayName

    <key>CFBundleDisplayName</key>
    <string>Your App Name</string>
    
    0 讨论(0)
  • 2020-11-22 08:51

    1. Select Target

    enter image description here

    2. Select Info

    enter image description here

    3. Insert Bundle Display Name and set App Title

    enter image description here

    0 讨论(0)
  • 2020-11-22 08:53

    In new versions of Xcode (Xcode 5 too) to change the name of the project follow this simple (detailed as possible) steps:

    Note: In this example I'll change a hypothetical "Sample" name to a "Test" one.

    1. Click twice slowly on the project root in the project navigator and then it becomes editable.

    2. Rename the project.

    3. After pressing 'ENTER' the assistant will suggest you to automatically change all project-name-related entries and will allow you to de-select some of them, if you want.

    4. Press 'RENAME' and Xcode will do the rest. In the meanwhile Xcode may ask you about the option of making a snapshot of the project (it is very recommendable to do so).

    5. In addition to renaming the project, you may want to rename the scheme so that it matches your new project name.

    6. Repeat similar steps like 1 and 2, and press OK.

    7. That's it.

    Another scenario ... The previous explanation was related to changing the project name, but chances are that you only need to change the display name that appears below the app icon in the home screen. These are the steps:

    1. In the "Supporting Files" group locate the info.plist (or related) file

    2. Locate the "Bundle display name" key and change the value to the new name.

      enter image description here

      enter image description here

    3. Delete the "old" app from the simulator or any other testing device.

    4. Clean and Rebuild your app again.

    5. That's it, you will now see the new app name in your home screen.

    0 讨论(0)
提交回复
热议问题