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][Swift]あらゆるエラー備忘録

Last updated at Posted at 2022-07-28

引っかかりそうなエラーには大体当たる、永遠の駆け出しエンジニアです。
(随時更新)

1.ビルドしても画面が真っ暗
2.Storyboardに設定したImageがビルドしても画面に反映されない

ビルドしても画面が真っ暗

StoryboardでUI作った!ViewControllerも設定した!
ビルドしたら画面が真っ暗!なんで!!

Failed to instantiate the default view controller for UIMainStoryboardFile 'Main' - perhaps the designated entry point is not set?

原因
Is initial View Controllerにチェック入れ忘れ
スクリーンショット 2022-07-28 23.28.57.png


Storyboardに設定したImageがビルドしても画面に反映されない

Resourceフォルダを作成して格納した画像をStoryboardで設定してUIに反映されてる!
なのにビルドした画面に反映されない!なんで!!

Could not load the "[画像名]" image referenced from a nib in the bundle with identifier "[Bundle Identifier]"

原因
画像たちのResourceフォルダをTargetMembershipにチェック入れてたもののうまくプロジェクトに紐づいてなかった様子。
大人しくAsssetに追加することで解決
スクリーンショット 2022-07-28 23.47.01.png

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?