UICollectionView adding UICollectionCell

Matrosov Alexander picture Matrosov Alexander · Mar 3, 2013 · Viewed 51k times · Source

When I try to put UICollectionCell to UICollectionView in Interface Builder I can't put it with unknown reasons. The cell is going to the tools bar without adding to UICollectionView

I am using:

  • iOS SDK 6.0
  • XCode 4.5.1
  • I don't use Storyboard

Answer

LE SANG picture LE SANG · Mar 3, 2013

Only UICollectionView inside StoryBoard have UICollectionViewCell inside. If use XIB, create a new XIB with CellName.xib, add CollectionViewCell to it, specify name of UICollectionView custom class. After that use registerNib.

Sample code: https://github.com/lequysang/TestCollectionViewWithXIB