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 エラー解決】Thread 1: signal SIGABRT

Posted at

はじめに

コレクションの実装の際にエラーが発生し、解決までに時間がかかったので解決方法をメモします。

エラーの背景

私の場合は、collectionViewCellのインスタスを生成する際に「Thread 1: signal SIGABRT」というエラーが発生しました。

スクリーンショット 2023-08-03 11.12.24.png

原因

インスタンス化するViewのCustom Classにクラス名が設定されていなかったので、インスタンス化する際にViewの認識ができず、エラーで落ちていたと考えられます。

スクリーンショット 2023-08-03 11.23.52.png

解決方法

Custom Classのclassを設定してください。

スクリーンショット 2023-08-03 11.31.54.png

「Inherit Module From Target」には必ずチェックを入れてください

解決できない場合

もし上の手順で解決できない場合は、ストーリーボードの接続が正しくできているかを確認してください。
以下の記事がわかりやすいと思います!

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?