how to remove storyboard warning: unsupported configuratin Prototype collection view cells must have reuse identifiers

swift, xcode

Solution

Just give them reuseIdentifier as `Cell` for remove that warning.

You can find it when you click on collectionView cell in Attributes Inspector window. Like shown in this Image.

Problem

I am using xcode 6.1 when running the app it show warning 1 : storyboard warning: unsupported configuration Prototype collection view cells must have reuse identifiers 2 :Main.storyboard Showing first 200 warnings only in my main view i have a collectionView inside this collectionView i have 64 collection reusable View my app is running fine but i want to remove this warning please help me

Original source