Why would Xcode not find my customized UICollectionViewCell?

51 Views Asked by At

Any ideas why Xcode doesn't recognize or 'see' my customized UICollectionViewCell class?

enter image description here enter image description here

1

There are 1 best solutions below

0
On

I think this is a bug in XCode, I've run into it for no reason, and had it start working later on.

The work around is to type out your outlet in the swift file first:

@IBOutlet weak var imageView:UIImageView!

Then compile and drag from the swift file to interface builder.