0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

タカシAdvent Calendar 2022

Day 8

【Xcode】ホーム画面に表示されるアプリ名の設定方法

Posted at

ホーム画面に表示されているアプリ名を変更

現在「App名」となっていますが、こちらを任意のアプリ名に変更していきます。
Simulator Screen Shot - iPhone 14 - 2022-12-18 at 13.34.52.png

App名はどこで決まるのか?

デフォルトで新規プロジェクト作成時に入力するProduct nameDisplay Name(ホーム画面に表示されるアプリ名)として利用される。

じゃあDisplay Nameを変更するのが正解?

Display Nameを変更するとプロジェクトファイルのPRODUCT_NAMEが変更される。
もし「sample」というProduct nameの場合、Display Nameを「sample2」と変更すると
アプリケーションファイル名も変更されてしまいます。

そんな時のためにBundle display nameという設定があります。
これはアプリケーションファイル名を変更せずに、ホーム画面のアプリ名だけを変更できる設定です。
ターゲット設定のinfoタブを開き、設定を追加してアプリ名を決めます。
スクリーンショット 2022-12-18 13.52.43.png

表示確認

変更されていることを確認できました。
Simulator Screen Shot - iPhone 14 - 2022-12-18 at 13.58.02.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?