LoginSignup
84
85

More than 5 years have passed since last update.

[iOS] アプリ名を国ごと変更したい場合

Last updated at Posted at 2014-12-17

言語ごとにアプリ名を変えて表示したい場合の説明です。
Swiftも、Objective-cも同じやり方です。

とりあえずアプリ名を変更したい場合はこちらの方が簡単です。
http://qiita.com/hiroo0529/private/24b027b9708d14200b56

今回はswift画面で変更してみます。
作業ステップは3つあります。

今回の目的:端末の言語が日本語で、アプリ名を「アプリ名」にする

  1. Project > Info > Localizations にて、Japanese(ja)を追加

  2. InfoPlist.stringを作成し、LocalizationをクリックしてJapaneseをチェック

  3. InfoPlist.string(Japanese)ファイルに「 CFBundleDisplayName = "アプリ名"; 」を書き込む

1. Project > Info > Localizations にて、Japanese(ja)を追加

スクリーンショット 2014-12-15 12.16.56.png   

2. InfoPlist.stringを作成し、LocalizationをクリックしてJapaneseをチェック

スクリーンショット 2014-12-15 12.17.48.png

スクリーンショット 2014-12-15 12.19.24.png  

3. InfoPlist.string(Japanese)ファイルに「CFBundleDisplayName = アプリ名」を書き込む

スクリーンショット 2014-12-15 16.00.22.png

スクリーンショット 2014-12-15 12.22.47.png

84
85
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
84
85