SwiftUIの基本を身につけたい方はこちら

【Xcode/Swift】Storyboardでの警告:Unsupported Configuration: Prototype collection view cells must have reuse identifiers

警告内容

Storyboardで以下のような警告が表示された。

Unsupported Configuration: Prototype collection view cells must have reuse identifiers

原因

CollectionViewのCellにIDがついてないから。

解決方法

CollectionViewのCellにIDをつける。

①CollectionViewCellを選択
Show (Show the Attributes inspector)を選択
③Identifierに何かしらIDをつける。

CellViewControllerの名前をつけるのが良い。

評価