0
0

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.

[XCode][警告] “Root View Controller“ is unreachable because it has no entry points, and no identifier for runtime access via -[UIStoryboard instantiateViewControllerWithIdentifier:].

Last updated at Posted at 2023-08-05

<ストーリーボードURL> “Root View Controller“ is unreachable because it has no entry points, and no identifier for runtime access via -[UIStoryboard instantiateViewControllerWithIdentifier:].

(1)どういう意味ですか?
(2)どのように対処したらいいですか?

(1)どういう意味ですか?

「Root View Controllerはエントリーポイントがなく、また

-[UIStoryboard instantiateViewControllerWithIdentifier:]

を通じて実行時にアクセスするための識別子もないため、到達不可能です。」という警告は、ストーリーボード内でRoot View Controller(ルートビューコントローラー)に対してエントリーポイントが設定されていないために、アプリケーションが起動した際に該当のビューコントローラーが到達不可能であることを意味します。また、ルートビューコントローラーをストーリーボード上で識別するための識別子も設定されていないため、

-[UIStoryboard instantiateViewControllerWithIdentifier:]

メソッドを使用して実行時にアクセスすることができません。

(2)どのように対処したらいいですか?

 この対処方法は、以下の手順に従って対応します:

 ストーリーボードで、ルートビューコントローラーとして設定したいビューコントローラーを選択します。
Attributes Inspector(属性インスペクター)を開きます。
「Is Initial View Controller」オプションをチェックします。これにより、選択したビューコントローラーがアプリケーションの起動時に表示されるルートビューコントローラーとして設定されます。
ルートビューコントローラーが設定されると、アプリケーションの起動時にそのビューコントローラーが表示されるようになります。

さらに、実行時に

-[UIStoryboard instantiateViewControllerWithIdentifier:]

 メソッドを使用してビューコントローラーにアクセスする場合は、ストーリーボード上で対象のビューコントローラーに適切な識別子(identifier)を設定することをお勧めします。これにより、識別子を指定してビューコントローラーをインスタンス化することができます。


関連記事


制作チーム:サンストライプ

sunstripe_logo.png
http://sunstripe.main.jp/
サンストライプについて
制作チームのサンストライプのコンテンツについては以下の通り

月3回のコンテンツをリリースしています。
参加者は、プログラマーやデザイナー、イラストレーター、声優やVTuberなどが募集中です。

関連プロジェクト・支援団体

その他協力応援 / 支援者の集い

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?