Change name of iPhone app in Xcode 4

前端 未结 11 505
误落风尘
误落风尘 2020-12-04 05:28

I want to change the name which is displayed below the app icon on the iPhone screen. I use Xcode 4 and I have one target with keys:

  • Bundle display name : ${PR
11条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-04 06:11

    In recent versions of XCode (I am on 4.3.2 currently), $(PRODUCT_NAME) is set to $(TARGET_NAME) which defaults to the name of the project directory (no don't change the directory name).

    Solution: Click on the file navigator. Click on your blue project icon. Look for the TARGETS list (under the PROJECT list). Hover-click your target; then rename it to your product name.


    Aside: If you are having code-signing problems, I found that deleting, revoking, and regenerating all certificates/keys, and profiles fixed my problem. I tried everything else first!

提交回复
热议问题