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?

【iOS】iOSアプリの新規作成

Posted at

記事概要

iOSアプリを作成する言語であるXcodeでの、プロジェクト開始方法についてまとめる。

前提

  • Macを使用している
  • XCodeのバージョンは、Version 12である

手順

  1. Xcodeアプリを開く
  2. Create a new Xcode projectを選択する
  3. Appを選択する
  4. アプリ概要を入力する
    項目名 記述内容 備考
    Product Name 任意のプロダクト名 ファイル名になる
    Team Noneではなく、Personal Teamを選択 Noneだとエラーになる
    Organization Identifier 任意の値
    Bundle Identifier Product NameOrganization Identifierから作成される アプリをリリースする場合、世界中で一意になるようにする必要がある
  5. プロジェクトを保存する場所を選択する
  6. エラーが表示されるが、Cancelを選択する
  7. info.plistをクリックする
  8. Bundle display nameを追加する
    1. +ボタンをクリックし、行を追加する
    2. KeyにBundle display nameと入力する
    3. Valueに任意のアプリ名を入力する

作成結果

ファイル格納場所

  1. 手順5.のディレクトリに遷移する
  2. 手順4.の「Product Name」が名称になっていることを確認する

アプリ

  1. 手順8.の「Bundle display name」がアプリ名になる
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?